JWT Decoder

Decode JWT tokens and inspect header, payload, signature.

Header
{
  "alg": "HS256",
  "typ": "JWT"
}
Payload
{
  "sub": "1234567890",
  "name": "Alice",
  "iat": 1516239022
}
Signature (not verified)
SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
⚠️ Signature is NOT verified. This tool only decodes — never share secret tokens.