JWT 解码器

粘贴 JWT 令牌即可查看头部、载荷和签名。时间戳会自动转换为可读日期。


    

    

    

This tool only decodes the token client-side. It does NOT verify the signature.

功能特性

Show Header / Payload / Signature
Parse timestamps
Expiration check
Decode only (no verification)

使用方法

1. 把 JWT 令牌(包含两个圆点的长字符串)粘贴到输入框。

2. 右侧会立即显示解码后的头部、载荷和签名。

3. 若令牌已过期,过期时间会被高亮显示。

常见问题

What is a JWT?
A JSON Web Token (JWT) is a compact, URL-safe token used for securely transmitting information between parties.

相关工具