JWT

Developer

JWT Decoder

Inspect JWT claims, timestamps, issuer, audience, and expiry details in a local-only decoder.

Edit or Paste Here

Editable work area

Use this area for the source text, query, token, or settings you want to test. The cleaned output appears beside it.

Results report

Current results

StatusDecoded
AlgorithmHS256
Token parts3

Header

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

Payload

json
{
  "sub": "user_123",
  "aud": "utility-manager",
  "iat": 1787836000,
  "exp": 1787843200
}

Claim summary

Subjectuser_123
Audienceutility-manager
Issued at2026-08-27T13:06:40.000Z
Expires2026-08-27T15:06:40.000Z

Assumptions

Calculation notes

  • Decoding happens in the browser and is for inspection only.