JSON Tools
JWT Decoder
Decode JWT headers and payloads without validating the token signature.
Decode JWT header and payload sections so you can inspect claims such as sub and exp.
Common edge cases
Base64Url padding is often omitted in JWTs. This decoder restores it before parsing JSON.
Language snippets
const payload = JSON.parse(atob(token.split(".")[1])); FAQ
Does this verify signatures?
No. The MVP decodes token sections only.
Related tools
Unix Timestamp Converter Convert UTC dates to Unix timestamps and convert seconds or milliseconds back to dates. Base64 Encoder and Decoder Encode and decode Base64 strings, including Unicode-safe examples. JSON Formatter and Validator Format, validate, minify, and inspect JSON with parse errors that point to the problem.