Decodificador JWT
Decodifica tokens JWT e inspecciona cabecera, carga útil y firma. Sin necesidad de servidor.
Header
{
"alg": "HS256",
"typ": "JWT"
}eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
Payload
{
"sub": "1234567890",
"name": "John Doe",
"iat": 1516239022
}eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ
Signature
SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c — HMACSHA256(base64UrlEncode(header) + '.' + base64UrlEncode(payload), secret)
Preguntas Frecuentes
Is my JWT sent anywhere?
No — all decoding happens in your browser. Your tokens never leave your computer.
What is a JWT?
JSON Web Token — a compact, URL-safe means of representing claims between two parties. Commonly used for authentication.
Related Tools
Formateador JSON
Formatea, embellece y valida datos JSON al instante. Formateador JSON gratuito para desarrolladores.
Codificador Base64
Codifica y decodifica cadenas Base64 en línea. Soporta texto UTF-8 y datos binarios.
Probador Regex
Prueba y depura expresiones regulares en línea. Coincidencias en tiempo real con resaltado.
Vista Previa Markdown
Vista previa de Markdown en vivo con renderizado al estilo GitHub. Escribe y previsualiza en tiempo real.