Codificadores e Cripto
Decodificador JWT
Decodificador JWT gratuito. Decodifique JSON Web Tokens para inspecionar o cabeçalho e o payload. Os tokens nunca saem do seu navegador. Para OAuth, depuração de autenticação, integração de API.
Nota do editor
Understanding · Three Base64 sections, joined by dots.
Este capítulo aprofundado está disponível apenas em inglês no momento. A ferramenta de conversão acima funciona no seu idioma; o artigo explicativo longo ainda não foi traduzido.
Perguntas frequentes
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.
As pessoas também pesquisam por
Leitura relacionada
Do blog.(3)
Use with
What people reach for next.
Ferramentas relacionadas
More in this room.
- Criador JWT (HS256)Assine um JWT com HMAC-SHA256 — no seu navegador.
- Assinador JWT (Pro)Todos os algoritmos — HS / RS / ES / PS / EdDSA.
- Codificar / Descodificar Base64Codificar e descodificar Base64 — compatível com Unicode.
- Codificar / Descodificar URLCodifique e descodifique URLs com segurança.
- Gerador de Hash (SHA-1/256/384/512)SHA-1, SHA-256, SHA-384, SHA-512 — tudo no navegador.
- Codificar / Descodificar Entidades HTMLConverta ou reverta carateres especiais HTML.