Decode and inspect JSON Web Tokens — 100% browser-based
Decode and inspect JSON Web Tokens (JWT) online free. View the header, payload, and signature sections with color-coded display. Automatically detects expired tokens and formats Unix timestamps (exp, iat, nbf) to human-readable dates. 100% browser-based using JavaScript's atob function — your token never leaves your device. Essential tool for debugging authentication issues in web applications.
JWT tokens are used for authentication in virtually every modern web application. When debugging auth issues, you need to inspect the token's contents — what claims it contains, when it expires, what algorithm was used, and what user data is encoded. This tool makes that instant. Instead of writing base64 decode code or using curl commands, just paste the token and see all the information clearly formatted.
A JWT consists of three parts separated by dots: Header.Payload.Signature. The header contains the algorithm (alg) and token type (typ). The payload contains claims — standard claims like sub (subject), exp (expiration), iat (issued at), and custom claims like user ID and roles. The signature verifies the token hasn't been tampered with. This tool decodes the header and payload but cannot verify the signature without the secret key.
All decoding happens in your browser. Your token is never sent to any server. However, avoid pasting production tokens in shared environments.
No. Signature verification requires the secret key, which should never be shared. This tool only decodes the header and payload.
exp (expiration time) is a Unix timestamp indicating when the token expires. The tool automatically converts it to a human-readable date.
iat (issued at) is a Unix timestamp indicating when the token was created. The tool converts it to a readable date automatically.
Common algorithms include HS256, HS384, HS512 (HMAC), RS256, RS384, RS512 (RSA), and ES256, ES384, ES512 (ECDSA). The algorithm is shown in the header.
Chúng tôi không chỉ thiết kế website, mà còn giúp doanh nghiệp xây dựng thương hiệu số mạnh mẽ. Cung cấp dịch vụ thiết kế website trọn gói từ thiết kế đến tối ưu SEO. Hãy liên hệ ngay với Tấn Phát Digital để cùng tạo nên những giải pháp công nghệ đột phá, hiệu quả và bền vững cho doanh nghiệp của bạn tại Hồ Chí Minh.
Tạo file .env và .env.example cho dự án.
Tạo .gitignore cho Node.js, Python, Java.
Tạo mock JSON data cho API testing.
Format và phân tích API response.
Test REST API: GET, POST, PUT, DELETE.
Chuyển đổi Binary, Hex, Base32.
Mã hóa/giải mã Base64.
Chuyển đổi Decimal, Binary, Hex.
Tạo CSS box-shadow trực quan.
Tính quyền file Linux.
Kiểm tra WCAG accessibility.
Tạo bảng màu ngẫu nhiên.