Algorithm
HS256
Decode a JWT into a readable view so you can review header fields, claims, and expiration details without verifying the signature.
Input chars
249
Words
1
Output length
207
Status
Structure looks valid
Status
HS256
Algorithm
HS256
Type
JWT
Subject
ggotem-user-123
Issuer
gogotem.com
Audience
tool-directory
Issued at
Jan 1, 2024, 12:00 AM
Not before
Jan 1, 2024, 12:00 AM
Expires at
Jan 1, 2030, 12:00 AM
Header
{
"alg": "HS256",
"typ": "JWT"
}Payload
{
"sub": "ggotem-user-123",
"name": "Gogotem Demo",
"iss": "gogotem.com",
"aud": "tool-directory",
"iat": 1704067200,
"nbf": 1704067200,
"exp": 1893456000
}Signature
signature-not-validated
This tool only decodes the token structure. It does not verify the signature or confirm the token is trustworthy.
The tool reads the JWT header and payload with Base64URL decoding so you can inspect claims such as alg, iss, sub, aud, iat, nbf, and exp quickly.
No. It helps you inspect the structure, but trust and authenticity require signature verification elsewhere.
Yes. If the segments are valid Base64URL, the header and payload can be decoded for inspection without verifying the signature.
Keep exploring
Jump into related tools from the same category and popular picks across Gogotem.
Format, validate, and minify JSON payloads in one place.
Encode plain text to Base64 or decode Base64 back into text.
Encode and decode query-safe URL values for links and APIs.
Convert Unix timestamps into readable dates and back again.
Generate SHA hash values from plain text input.
Generate one or more UUID v4 values for development and testing.