JWT Decoder
Decode JSON Web Tokens into header, payload, and signature. No signature verification.
Token
Header
HS256{
"alg": "HS256",
"typ": "JWT"
}Payload
{
"sub": "1234567890",
"name": "Jane Doe",
"email": "jane@toolz.app",
"role": "admin",
"iat": 1719400000,
"exp": 1719486400
}Claims
Subject
1234567890
Name
Jane Doe
Email
jane@toolz.app
Role
admin
Issued
1719400000 → Wed, 26 Jun 2024 11:06:40 GMT
Expires
1719486400 → Thu, 27 Jun 2024 11:06:40 GMT