Developer Tools
JWT Decoder
Decode JWT header and payload instantly. Check token expiry. Free online JWT decoder, no signature verification.
Input
Result
Decoded JWT will appear here.
How to Use
- Paste a JWT token (three Base64URL segments separated by dots).
- The header and payload are decoded automatically and shown as formatted JSON.
- If the payload includes an
expclaim, the token's expiry status is shown.
How JWTs Work
A JSON Web Token (JWT) consists of three parts — header, payload, and signature — each Base64URL-encoded and joined with dots. The header and payload are plain JSON once decoded, but the signature requires the issuer's secret or private key to verify, which this tool does not have. This tool only decodes; it does not (and cannot) verify the signature.
Common Uses
- Inspecting the claims inside an access token while debugging an API integration.
- Checking when a token expires without writing code.
- Understanding what data an authentication provider embeds in its tokens.
Security note: never paste a token containing real secrets into a third-party tool in a production context. This tool processes the token on the server but does not store it.
Related Tools
Chmod Calculator
Calculate Unix file permissions visually. Click checkboxes to set read/write/execute for owner, group, and others. Shows octal and symbolic notation.
CSS Specificity Calculator
Calculate CSS selector specificity and understand which styles take precedence. Supports ID, class, attribute, pseudo-class, element, and pseudo-element selectors.
CSS Unit Converter
Convert between CSS units: px, rem, em, pt, vw, vh. Set custom base font size and viewport width.