jwt • decode • generate • sign
Decode locally for inspection. Verification still belongs in your app or API.
Create test tokens locally with HS256 secrets or RS256 private keys.
Use fake development secrets only; do not paste production signing material.
Decode JSON Web Token headers and payloads, generate HS256 or RS256 test tokens, and export browser-generated RSA keys without sending data to a server.
Your input is processed in the browser. We do not upload tool payloads to our servers.
A JWT has header.payload.signature separated by dots. Decode existing tokens or create signed test tokens locally.
Learn JSON Web Token structure, common claims, and why decoding is not the same as verification.
Read: JWT explained: how to decode tokens safely →