Utility
Utility
Paste a JWT to inspect its header, payload, and expiry. Runs entirely in your browser — your token never leaves the page.
{
"alg": "HS256",
"typ": "JWT"
}SflKxwRJSMeK…
{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022
}A JSON Web Token is a compact, URL-safe means of representing claims between two parties. It’s three base64url-encoded parts joined by dots: header, payload, and signature.
The header and payload are just JSON — you can decode them with any JSON parser. The signature is opaque bytes derived from a secret or key, used by the receiver to verify the token wasn’t tampered with.
sub claim) out of a session token.Decoding happens entirely in your browser. Nothing is sent to a server, ever. There’s no analytics on this page that captures the token. Close the tab and the token is gone.