Token Presets
Encoded JWT Token
Segmented Token Map
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiZW1haWwiOiJqb2huLmRvZUBleGFtcGxlLmNvbSIsImFkbWluIjp0cnVlLCJpYXQiOjE3ODY5MzM4MDYsImV4cCI6MTc4NzAyMzgwNiwiaXNzIjoiaHR0cHM6Ly9hdXRoLmRldnRvb2xzLmh1YiIsImF1ZCI6Imh0dHBzOi8vYXBpLmRldnRvb2xzLmh1YiJ9.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Header (Algorithm) Payload (Data Claims) Signature
Decoded Contents
Algorithm: HS256
Token Expiration Status: ACTIVE
Expires on 8/18/2026, 3:30:06 AM (Expires in 1 day)
Header: Algorithm & Token Type
{
  "alg": "HS256",
  "typ": "JWT"
}
Payload: Data Claims
{
  "sub": "1234567890",
  "name": "John Doe",
  "email": "john.doe@example.com",
  "admin": true,
  "iat": 1786933806,
  "exp": 1787023806,
  "iss": "https://auth.devtools.hub",
  "aud": "https://api.devtools.hub"
}
Registered Claims Details
subSubject
Identifies the subject (usually user ID) of the JWT.
"1234567890"
iatIssued At
Identifies the time at which the JWT was issued.
17869338068/17/2026, 2:30:06 AM
expExpiration Time
Identifies the expiration time on or after which the JWT must not be accepted.
17870238068/18/2026, 3:30:06 AM
issIssuer
Identifies the principal that issued the JWT.
"https://auth.devtools.hub"
audAudience
Identifies the recipients that the JWT is intended for.
"https://api.devtools.hub"
Signature: Verification Info

The signature is the cryptographic seal ensuring the token wasn't altered. In this client-side decoder, signature verification occurs entirely in your browser.

HMACSHA256(
base64UrlEncode(header) + "." +
base64UrlEncode(payload),
[YOUR_SECRET_SECRET]
)
This token's raw signature value is: SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c