Toolbox

Online JWT Decoder Viewer

JWT解码JWT解析Token查看Base64URL

Paste a JWT token to instantly decode its Header and Payload as formatted JSON, with exp/iat/nbf timestamps converted to readable time. Supports Base64URL and unicode claims, decoded locally without signature verification.

输入
All processing is done locally in your browser, no upload

How to Use

  • Paste any valid JSON, supports nesting, arrays and escapes
  • Click Beautify to auto indent and format
  • Click Minify to remove whitespace into one line
  • All operations run locally for privacy

Related Tools

FAQ

Does JWT decoding verify the signature?

No. This tool only performs Base64URL decoding and JSON formatting so you can inspect claims. It does not verify signatures and should not be used for authorization decisions.

Why does my token fail to decode?

Common causes: the token is not a standard three-part structure (header.payload.signature), a segment is not valid Base64URL, or the payload is not valid JSON. The tool reports the exact problem.

What are exp and iat fields?

They are standard JWT time claims in Unix seconds: iat is issued-at, exp is expiration, nbf is not-before. The tool converts them into readable UTC times automatically.