Decode and debug JSON Web Tokens (JWT) directly in your browser. Inspect the header, payload data, and signature structure without any data leaving your device.
HEADER: Algorithm & Token Type
{}
PAYLOAD: Data
{}
SIGNATURE
HMACSHA256(
base64UrlEncode(header) + "." +
base64UrlEncode(payload),
your-256-bit-secret
)
