JWT Decoder

Decode JWT tokens instantly, inspect claims, and verify HMAC signatures locally in your browser.

Input

Time-based claims look validPayload lines: 5

Signature Verification (HS256/384/512)

Output

Decoded Header

{
  "alg": "HS256",
  "typ": "JWT"
}

Decoded Payload

{
  "sub": "1234567890",
  "name": "Tool User",
  "admin": true
}
Algorithm: HS256Type: JWTSignature: present

Claims Breakdown

No standard time claims detected (iat, nbf, exp).