Decoding a JWT payload section
The middle section of a JWT is Base64-encoded JSON. Decoding it here shows the payload — but this tool only decodes; it never verifies the signature. Decoded content is displayed without claiming any authenticity, which is why the page warns that decoding is not validation.
| Input | Value |
|---|---|
| base64 | eyJ1c2VyIjogImFsaWNlIiwgInJvbGUiOiAiYWRtaW4ifQ== |
| Result | {"user": "alice", "role": "admin"} (unverified — decoding is not authentication) |