Valid JWT
In its compact form, JSON Web Tokens consist of three parts separated by dots (.)
Contains metadata about the token including token type and signing algorithm
{ "alg": "HS256", "typ": "JWT" }Contains claims (statements about an entity and additional data)
{
"sub": "1234567890",
"name": "John Doe",
"admin": true,
"iat": 1516239022,
"exp": 1516242622
}Used to verify the token hasn't been tampered with during transmission
HMACSHA256(
base64UrlEncode(header) + "." +
base64UrlEncode(payload),
secret_key
)A step-by-step guide to use JWT conversion tool
Select whether you want to encode a payload to JWT or decode a JWT back to payload.
Type or paste the payload or JWT you want to convert into the input field.
The converted data will appear in the result field. You can copy it directly to your clipboard using the copy button.
Find answers to common questions about JWT