Text to Binary Converter
NewConvert text to binary and binary to text instantly. View each character's binary, decimal, and hex representation. Supports ASCII and UTF-8 encoding.
Character Breakdown
| Char | Decimal | Hex | Binary |
|---|---|---|---|
| H | 72 | 48 | 01001000 |
| e | 101 | 65 | 01100101 |
| l | 108 | 6C | 01101100 |
| l | 108 | 6C | 01101100 |
| o | 111 | 6F | 01101111 |
| , | 44 | 2C | 00101100 |
| SP | 32 | 20 | 00100000 |
| W | 87 | 57 | 01010111 |
| o | 111 | 6F | 01101111 |
| r | 114 | 72 | 01110010 |
| l | 108 | 6C | 01101100 |
| d | 100 | 64 | 01100100 |
| ! | 33 | 21 | 00100001 |
How to Use Text to Binary Converter
- Select Text to Binary or Binary to Text mode.
- Enter your text or binary string in the input area.
- For text input, optionally toggle space-separated bytes.
- View the converted output instantly.
- Check the character breakdown table for per-character details.
- Click the copy button to copy the result to your clipboard.
Understanding Binary and Text Encoding
Binary is a base-2 number system using only two digits: 0 and 1. Computers store all data in binary because electronic circuits have two states: on (1) and off (0). When you type a character, your computer stores it as a specific pattern of bits according to a character encoding standard.
ASCII (American Standard Code for Information Interchange) defines 128 characters using 7 bits, typically stored in 8-bit bytes. For example, 'A' = 65 = 01000001, 'a' = 97 = 01100001, and '0' = 48 = 00110000. UTF-8 extends this to support over 1 million characters from virtually all writing systems worldwide.
This converter uses the UTF-8 encoding standard, which is the dominant encoding on the web (used by over 98% of websites). UTF-8 is backward-compatible with ASCII, meaning all ASCII characters have the same binary representation in both standards.