Codificadores y Cifrado
Decodificador JWT
Decodificador JWT gratuito. Decodifica JSON Web Tokens para inspeccionar la cabecera y la carga útil. Los tokens nunca salen de tu navegador. Para OAuth, depuración de autenticación, integración de API.
Nota del editor
Understanding · Three Base64 sections, joined by dots.
Este capítulo en profundidad está disponible solo en inglés por el momento. La herramienta de conversión de arriba funciona en tu idioma; el artículo explicativo extenso aún no se ha traducido.
Preguntas frecuentes
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.
La gente también busca
Lectura relacionada
Del blog.(3)
Use with
What people reach for next.
Herramientas relacionadas
More in this room.
- Creador de JWT (HS256)Firma un JWT con HMAC-SHA256 — en tu navegador.
- Firmador JWT (Pro)Todos los algoritmos — HS / RS / ES / PS / EdDSA.
- Codificar / Decodificar Base64Codifica y decodifica Base64 — seguro para Unicode.
- Codificar / Decodificar URLCodifica y decodifica URLs de forma segura.
- Generador de Hash (SHA-1/256/384/512)SHA-1, SHA-256, SHA-384, SHA-512 — todo en el navegador.
- Codificar / Decodificar Entidades HTMLEscapa o desescra los caracteres especiales de HTML.