What this tool does
Decodes a JWT into its Header, Payload, and Signature for inspection. No verification is performed.
Steps
- Paste a JWT (three Base64URL parts separated by dots) into the input.
- Click Decode to view the JSON header and payload, and the signature bytes.
Examples
- eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... โ shows alg: HS256, typ: JWT.
Notes
- This tool does not verify the signature. Use serverโside libraries to verify.
- Payload may be untrusted; do not rely on it without verification.
- Processing is local in your browser.