Encoders & Crypto
Encode, decode, hash
Encode and decode the formats that carry data through text-only channels: Base64, URL percent-encoding, HTML entities, raw binary, and JSON or string escaping, plus a JWT decoder for inspecting tokens. These run entirely client-side, which is the point when the thing you are decoding is an access token, an API key, or a basic-auth header.
Base64 Encode/Decode
Encode and decode Base64 strings.
URL Encode/Decode
Encode and decode URL components.
HTML Entity Encoder
Encode and decode HTML entities.
JSON Escape
Escape and unescape JSON strings.
String Escape
Escape strings for many languages.
JWT Decoder
Decode, inspect, and verify JWTs.
Image to Base64
Convert images to Base64 data URLs.
Text to Binary Converter
Translate text to binary and back.