Decode and Inspect JWT Tokens
Decode the header and payload sections of a JSON Web Token (JWT) to inspect its claims.
JWT tips
JWTs have three parts separated by dots: header.payload.signature. Each part is Base64URL encoded. Decode the first two to inspect claims.
Base64URL differs slightly from standard Base64: - replaces +, _ replaces /, and padding (=) is omitted. The decoder handles this automatically.
Never decode a JWT on an untrusted public tool if it contains sensitive data. This tool processes everything locally in your browser.
The payload contains exp (expiry), iat (issued at), and sub (subject) claims as Unix timestamps. Convert them to see exact expiry dates.
Как работи
Защо да използвате нашия?
Also check out…
Encode API Data in Base64
Encode credentials, tokens, and payloads to Base64
Encode Images to Base64 for CSS
Convert small images and icons to Base64 data URLs
Encode Files to Base64 for Email
Encode file attachments to Base64 for MIME email c
Encode Binary Data for Text Transfer
Encode files or binary data to Base64 so they can
