</> hexnook

JWT Decoder

Decode a JSON Web Token's header and payload, with optional HMAC signature verification.

JWT

Frequently asked questions

No — the token is decoded entirely in your browser using base64url and JSON.parse. It's never sent to any server, which matters since a JWT's payload is only base64-encoded, not encrypted, and often contains sensitive claims.