Encoding & Utility Tools

JWT Decoder & Inspector

Decode any JSON Web Token (JWT) into its header, payload, and signature segments. All claims are explained in plain English, expiry status is shown live, and algorithm security is flagged. No signature verification — this tool only decodes the Base64-encoded segments. Never share or paste production secrets here.

All processing happens locally in your browser. No data is uploaded.
Never paste real production JWTs containing sensitive claims into any online tool — even this one. Use test/development tokens only. This tool performs read-only Base64 decoding with no signature validation.
JWT Token
Standard JWT Claims Reference
ClaimFull NameDescription
issIssuerWho issued the token (e.g. auth server URL)
subSubjectWho the token is about (usually user ID)
audAudienceWho the token is intended for
expExpirationUnix timestamp when token expires
nbfNot BeforeToken not valid before this time
iatIssued AtWhen the token was issued
jtiJWT IDUnique identifier to prevent replay attacks