Codificatori e Crittografia
Decodificatore JWT
Decodificatore JWT gratuito. Decodifica i JSON Web Token per ispezionare l'header e il payload. I token non lasciano mai il tuo browser. Per OAuth, debug dell'autenticazione, integrazione API.
Nota dell'editore
Understanding · Three Base64 sections, joined by dots.
Questo capitolo approfondito è attualmente disponibile solo in inglese. Lo strumento di conversione qui sopra funziona nella tua lingua; il lungo articolo esplicativo non è stato ancora tradotto.
Domande frequenti
Quick answers.
›Does this verify the JWT signature?
No — the decoder shows header and payload only. Signature verification requires the issuer's secret or public key, which we never receive.
›Is my token sent to your servers?
Never. Decoding runs entirely in your browser — tokens stay on your device.
›What algorithms are supported?
Any JWT can be decoded (HS256, RS256, ES256, etc.) — decoding is algorithm-agnostic. Verification is the algorithm-specific step.
›What does each part of a JWT contain?
Header: algorithm and token type. Payload: claims (sub, iat, exp, custom data). Signature: HMAC or signature over header.payload using a secret/key.
›Is the decoder free?
Yes — fully free, no signup.
Le persone cercano anche
Letture correlate
Dal blog.(3)
Use with
What people reach for next.
Strumenti correlati
More in this room.
- Creatore JWT (HS256)Firma un JWT con HMAC-SHA256 — nel tuo browser.
- JWT Signer (Pro)Tutti gli algoritmi — HS / RS / ES / PS / EdDSA.
- Encode / Decode Base64Codifica e decodifica Base64 – compatibile Unicode.
- Codifica / Decodifica URLCodifica e decodifica URL in modo sicuro.
- Generatore di Hash (SHA-1/256/384/512)SHA-1, SHA-256, SHA-384, SHA-512 — tutto nel browser.
- Codifica/Decodifica Entità HTMLEsegui l'escape o l'unescape di caratteri speciali HTML.