100% local and secure
Your data stays on your device and is never sent to our servers.
Decode the readable contents of a JSON Web Token locally and inspect its claims without sending the token to a server.
Inspect a JWT header, payload, and important timestamps locally to understand its contents without sending the token to a server. It is useful for authentication debugging, checking claims, or reading expiry data, but it does not replace cryptographic signature verification.
Your data stays on your device and is never sent to our servers.
Generate or verify sensitive data with clear and immediate controls.
Strings, keys, hashes, and technical formats depending on the security function.
Get a clean, ready-to-use result in seconds without installing software or configuring a complex workflow.
Guide
Add the token without changing its three dot-separated sections.
Review the declared algorithm, claims, and timestamps such as iat, nbf, or exp when present.
Use decoded information for diagnosis, but have the server verify the signature before trusting the token.
Decoding makes the header and payload readable. Cryptographic verification confirms that the signature matches an expected key and algorithm.
No. Any correctly structured token can be decoded; the signature and claims still need to be validated before trusting it.
It can display time-based claims such as exp when present, but that is separate from full server-side token validation.
No. Inspection runs locally in your browser.
Learn what a JWT contains, why decoding is not verification, how claims such as exp, nbf, iss and aud work, and common security mistakes.
Learn why covering text is not enough, how secure PDF redaction removes sensitive information and why sanitization matters before sharing.
Learn how to introduce a CSP progressively, understand its main directives, Report-Only mode, nonces and common mistakes.
Distinguish hashing from encryption and encoding, understand SHA-256 and SHA-3, collisions and the limits of a hash without authentication.
Recommended workflow
Discover tools that naturally fit before, after, or alongside this one.
Decode a JWT to inspect its header, payload, and main token information more easily.
Generate an HTTP Basic Auth header and usage examples.
Create a locally signed JWT with HS256, HS384, or HS512.