JWT decoder
Paste a JSON Web Token to inspect its header and payload. The signature is not verified - this only decodes the token. Runs locally, nothing is uploaded.
Header
{
"alg": "HS256",
"typ": "JWT"
}Payload{
"sub": "1234567890",
"name": "John Doe",
"admin": true
}