Utility Toolschevron_rightJWT Decoder

JWT Decoder

Paste your encoded token below to inspect its header and payload contents.

Auto-detecting...
ALGORITHM: HS256

settings_input_componentHEADER: ALGORITHM & TOKEN TYPE

{
"alg": "HS256",
"typ": "JWT"
}

data_objectPAYLOAD: DATA

{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022// Jan 18, 2018, 1:30 AM
}
verified_user

Token Structure Valid

Valid

The token structure is valid using the HS256 algorithm. The payload hasn't been tampered with.

security
Private & Local

Decoding is performed entirely in your browser. Your sensitive JWT strings never leave your machine.

update
Timestamp Conversion

Claims like iat, exp, and nbf are automatically converted to human-readable dates.

layers
Structure Analysis

Identifies common issues like missing headers, invalid padding, or non-JSON formatted segments.