JWTデコーダー
Decode and inspect JSON Web Tokens · header, payload, claims and expiration.
Header
Payload
Signature
About JWTs
JSON Web Tokens (JWTs) are a compact way to represent claims between two parties. They consist of three parts: a header (algorithm and type), a payload (claims like issuer, expiration, subject), and a signature. This tool decodes the header and payload but does not verify signatures · for that, you need the signing secret or public key. All decoding happens in your browser; your token is never sent anywhere.
Related Tools
Hash Generator
Generate MD5, SHA-1, SHA-256, SHA-384, and SHA-512 hashes from text or files.
Base64 Encoder / Decoder
Encode or decode Base64 strings and files. Supports UTF-8 text and drag & drop files.
Text Encryption
Encrypt and decrypt text with AES-256-GCM. 100% client-side · your data never leaves your browser.