Encode tool

JWT Decoder

Decode JWT header and payload without sending tokens to a server.

Use the tool

Common use cases

  • Encode values for URLs and HTML.
  • Decode copied tokens and payload snippets.
  • Inspect data without switching tools.

Example input

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjMiLCJuYW1lIjoiQUkgSlNPTiBGb3JtYXQiLCJpYXQiOjE3MTUyMDAwMDB9.signature

Related tools

FAQ

Does this verify JWT signatures?

No. It decodes header and payload only. Signature verification requires the secret or public key.

Is my token uploaded?

No. Decoding runs in your browser.

Can expired tokens be decoded?

Yes. Expiration does not prevent decoding.