目录 / 加密 / JWT 令牌解码器
加密 · 工具

JWT 令牌解码器

使用标头和有效负载检查来解码和验证 JSON Web 令牌 (JWT)。

JWT Token
Token Status
---
Waiting for input...
PNG · 在您的浏览器中生成,不会上传任何内容
Frequently asked questions
What is a JWT token?
A JWT (JSON Web Token) is a compact, URL-safe token format used to securely transmit information between parties. It consists of three Base64-encoded parts: header, payload, and signature.
How do I decode a JWT token?
Paste your JWT token into the input field and the decoder will automatically split it into header, payload, and signature sections, displaying all claims and their values.
Can I verify a JWT signature with this tool?
No. Signature verification requires the secret key and can only be performed server-side. This tool displays the signature but cannot validate it without the key.
What is the difference between JWT header and payload?
The header contains metadata like the algorithm used (e.g., HS256), while the payload contains the actual claims or data being transmitted, such as user ID or expiration time.
How do I check if a JWT is expired?
Look at the Expires At claim in the decoded payload. If the expiration timestamp has passed, the token is expired and should not be used.
Stay in the loop
New tools, in your inbox.

Get an occasional email when we ship new calculators and updates. No spam, unsubscribe anytime.

We respect your privacy. No spam, ever.