💻 Text to Binary Converter
Convert between text and binary representation
Text
Binary
Other Formats
FAQ
How does text to binary work?
Each character is converted to its ASCII code number, then that number is represented in binary (base 2). For example, 'A' = 65 in ASCII = 01000001 in binary.
Why are there 8 digits per character?
Standard ASCII uses 8 bits (1 byte) per character, giving 256 possible values (0-255). Each group of 8 binary digits represents one character.