JWT Decoder
Decode JSON Web Tokens (JWTs) in your browser. This tool decodes the header and payload using Base64URL and formats them as JSON. It can verify HMAC signatures (HS256/384/512) when you provide the shared secret. Do not paste secrets or tokens you do not control.
- Decode JWT header and payload instantly.
- Inspect claims like
exp,iat,aud,iss. - Verify HMAC signatures (HS256/384/512) with a secret.
Token input
Paste a full JWT below in the format header.payload.signature. Only the first two parts are decoded; the
signature is shown as-is.
Signature verification is supported for HS256, HS384, and HS512 when you provide the shared secret. For RS256, ES256, and other asymmetric algorithms, use the JWT & OAuth Security Toolkit.