Crypto & Security Tools
Popular
Recently added
JWT Decoder
Inspect JSON Web Tokens by decoding the header and payload. Useful for debugging auth flows - decoding only, no signature verification.
Features
- Decode header and payload
- Show signature segment
- Pretty-printed JSON
- Local-only processing
How to use JWT Decoder
- 1Paste a JWT into the input.
- 2Inspect the decoded header and payload.
- 3Copy either JSON block as needed.
Examples
Payload claim
InputeyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..Output
{
"sub": "1234567890",
"name": "Ada Lovelace"
}About JWT Decoder
Parse Base64URL JWT segments into readable JSON so you can inspect claims while debugging. Signatures are not verified - this is for inspection, not auth.
Frequently asked questions
No. It only decodes. Never trust a token as authentic from decoding alone.
No. Decoding runs in your browser.
You will see an error describing what failed to parse.