Text to Binary & Hex Converter
Convert text to binary or hexadecimal, and decode binary/hex back to text
Conversion Mode:
Options:
Quick Examples:
0 characters
๐ How It Works
Binary Conversion:
- Each character is converted to its ASCII/UTF-8 value
- The value is then represented in binary (base 2)
- Example: 'A' = 65 = 01000001
Hexadecimal Conversion:
- Each character is converted to its ASCII/UTF-8 value
- The value is then represented in hexadecimal (base 16)
- Example: 'A' = 65 = 41
Common Use Cases
- ๐ป Programming: Debug character encoding issues
- ๐ Cryptography: Analyze encoded messages
- ๐ Education: Learn about number systems and encoding
- ๐ง Debugging: Inspect raw data values
- ๐ Web Development: Work with color codes and data URIs
Related Tools
After converting to binary/hex, you might want to:
- ๐ค Convert text case
- ๐ง Format JSON data
- ๐ Convert between data formats
- ๐งน Clean whitespace issues