跳到内容
RapideTools

JWT 解码器

解码并查看 JWT 令牌。

Paste a JWT to decode its header and payload as readable JSON. The token is decoded locally in your browser — it is never sent anywhere, and the signature is not verified.

解码仅读取令牌 —— 不会验证签名。切勿粘贴机密或生产令牌。

你的输入在浏览器本地处理 —— 不会上传、存储或记录。

为你节省时间了吗?请我喝杯咖啡

工作原理

  1. 1 Paste your JWT.
  2. 2 The header and payload are decoded live.
  3. 3 Copy either section as JSON.

常见用例

  • Inspect the claims in a token.
  • Check expiry and issued-at times.
  • Debug authentication during development.
  • See which algorithm a token uses.

常见问题

Is my input sent to a server?

No. Everything runs locally in your browser — your input is never uploaded, stored or logged.

Does this verify the signature?

No. Decoding only reads the header and payload — it does NOT verify the signature, so never trust a decoded token for security decisions.

Is my token uploaded?

No. The token is decoded entirely in your browser and is never sent to a server.

Is it really free?

Yes — free, with no signup and no limits.