Decodes JSON Web Tokens (JWT) and displays the header, payload, and signature sections in a readable format. Automatically parses standard claims (iss, sub, aud, exp, iat, nbf) and shows whether the token is expired or not yet valid. Note: this tool decodes only — it does not verify the signature.
Paste your JWT and instantly inspect the token contents — useful for debugging authentication issues. To decode the raw Base64 sections manually, use the Base64 to Text decoder.
Sample JWT
Input
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Output
Header: {"alg":"HS256","typ":"JWT"} | Payload: {"sub":"1234"}Decode a Base64 string back to plain text.
Generate HMAC signatures using SHA-256, SHA-512, and other algorithms.
Beautify, minify, and validate JSON with syntax highlighting.
Generate MD5, SHA-1, SHA-256, SHA-512 hashes from text.
Convert Markdown to HTML instantly.
Convert HTML markup to clean Markdown syntax.