Character Encoding Converter
Transform text between various binary-to-text and character encoding formats.
Encoding:
Encoding:
Supported Encodings
- UTF-8: Multi-byte variable width Unicode encoding.
- UTF-16LE: Little-endian 2 or 4 byte Unicode encoding.
- Base64: Binary-to-text encoding for carrying data over text channels.
- Hex: Hexadecimal representation of bytes.
- Latin1: A single-byte encoding that can represent the first 256 Unicode characters.
- Byte Array: A comma-separated list of decimal byte values (0-255).
How it works
This tool uses the Buffer API to parse the input into a raw sequence of bytes based on the input encoding, and then serializes those bytes into the desired output encoding. All processing is done 100% in your browser.