Category
Encoders & Decoders_
Encoders and decoders handle the wrapping formats data travels in: Base64 for binary-safe transport, percent-encoding for URLs, and JWTs for signed claims. The tools in this category are strict where strictness protects you — invalid Base64 bytes are flagged rather than silently mangled, URL decoding tolerates real-world sloppiness but tells you about it, and the JWT decoder reads headers and claims without ever sending your token anywhere, which matters because a pasted token is a credential. Everything runs client-side; nothing you decode is seen by a server.
Live_Tools [5]
Base64 EncoderEncode text to Base64, UTF-8 safe.Base64 DecoderDecode Base64 back to readable text.URL EncoderPercent-encode text for safe use in URLs.URL DecoderDecode percent-encoded URL strings.JWT DecoderDecode JSON Web Tokens without sending secrets anywhere.
6 more encoders & decoders are on the roadmap — see the full index for what's coming.