The Encode / Decode Toolkit covers every common encoding developers encounter — Base64 for data URIs and HTTP Basic auth, URL percent-encoding for query strings, HTML entity escaping for safe embedding, and binary, hex, and ASCII for low-level debugging. Each tool encodes in one direction and decodes in the other, with input validation and live output.
The JWT Decoder inspects JSON Web Tokens without requiring a signing key, revealing the header algorithm, payload claims, and expiration time — exactly what you need when debugging an expired session or auditing user roles in production tokens. The Base32 encoder supports the RFC 4648 alphabet used by TOTP secrets and OTP libraries, and ROT13 provides quick obfuscation for spoiler text and puzzles.
All encoding and decoding happens in your browser. JWTs, auth credentials, and binary payloads never leave your device, which makes the toolkit safe for debugging sensitive tokens from production systems without an air-gapped environment.