JWT Decoder
Decode and inspect JSON Web Tokens to view header, payload, and signature claims.
{
"alg": "HS256",
"typ": "JWT"
}{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022,
"exp": 1916239022,
"role": "admin"
}Note: This tool decodes the JWT but does not verify the signature. Use a secret/public key to verify authenticity.
How to Use JWT Decoder
- 1
Paste your JWT
Enter the JSON Web Token string you want to inspect.
- 2
View the payload
See the decoded header, payload, claims, and expiration time.
- 3
Verify the token
Check if the token is expired or has valid structure.
Related Tools
JSON Formatter & Validator
Format, validate, and beautify JSON with syntax highlighting and error detection.
Base64 Encoder / Decoder
Encode text or files to Base64 and decode Base64 strings back to their original form.
SQL Formatter & Beautifier
Format and indent SQL queries for better readability across all major dialects.
HTML to Markdown Converter
Convert HTML markup into clean Markdown syntax with support for tables and lists.
Markdown to HTML Live Preview
Write Markdown and see the rendered HTML output in real time with live preview.
Diff / Patch Viewer
Visualize unified diffs and patch files with color-coded additions and deletions.