Text to Binary Converter
Convert text to binary code and binary back to text. Supports ASCII and UTF-8 characters.
About
Binary code represents data using only two digits: 0 and 1. Each character in your text is converted to its binary representation using the character’s ASCII code. For example, the letter ‘A’ is 01000001 in binary (decimal 65). This tool converts each character to an 8-bit binary string separated by spaces.
FAQ
How does text to binary work?
Each character is converted to its ASCII code, then that number is expressed in binary (base 2).