Crypto & Encoding
JWT Parser
Decode a JWT's header and payload with human-readable dates (decode only).
JWT
Pasted token is decoded locally — signature is NOT verified.
Decode only. This does not check the signature — never trust a token without verifying it server-side.
Header
{
"alg": "HS256",
"typ": "JWT"
}Payload
{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022
}Timestamps
Standard time claims rendered as UTC.
- Issued at (iat)
- Thu, 18 Jan 2018 01:30:22 GMT