エンコーダー&暗号化
JWTデコーダー
無料のJWTデコーダー。JSON Webトークンをデコードしてヘッダーとペイロードを検査します。トークンはブラウザから離れません。OAuth、認証デバッグ、API連携に。
Runs in your browser
編集者注
Understanding · Three Base64 sections, joined by dots.
この詳細な解説章は現在、英語版のみで提供されています。上の変換ツールはあなたの言語で動作しますが、長文の解説記事はまだ翻訳されていません。
よくある質問
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.
他の人はこちらも検索しています
関連記事
ブログから。(3)
Use with
What people reach for next.
関連ツール