Encoders & Decoders
Base64, URL encoding, HTML entities, JWTs, and hash generation.
Encrypt or decrypt text with a passphrase using AES-GCM via the browser's native Web Crypto API.
Base32 Encoder/DecoderEncode text to Base32 and decode it back, using the standard RFC 4648 alphabet.
Base64 Encoder & DecoderConvert text to and from Base64 encoding instantly.
CRC32 Checksum CalculatorCompute the CRC32 checksum of text or a small file, for integrity/error-detection checks.
Gzip Text CompressorCompress text to a base64-encoded gzip string, or decompress one back to plain text, entirely in your browser.
Hash GeneratorGenerate MD5, SHA-1, SHA-256, and SHA-512 hashes of any text, all at once.
HTML Entity ConverterEncode text to HTML entities or decode entities back to plain text.
JWT DecoderDecode a JWT into its header and payload - decoding only, signature is not verified.
Morse Code ConverterConvert text to Morse code or Morse code back to text, in either direction.
String Escape / UnescapeEscape or unescape strings for JavaScript, Java, or regex, each handling its own special characters.
Text to Binary ConverterConvert text to its 8-bit binary representation and back, space-separated byte by byte.
URL Encoder & DecoderPercent-encode or decode text and URLs instantly in your browser.
UTF-8 Encoder/DecoderEncode text into its raw UTF-8 byte representation, or decode a UTF-8 byte sequence back to text.