Text to Binary Converter
Convert text to binary representation and vice versa.
Text to BinaryBinary to Text
Text Input
Separator:
Binary Output
Output will appear here...
Examples
=
01001000 01100101 01101100 01101100 01101111=
01001000 01101001 00100001=
01000001 01000010 01000011Common ASCII Values
A = 01000001a = 011000010 = 00110000Space = 00100000About Binary Encoding
Binary is the fundamental language of computers, consisting only of 0s and 1s. Each character is represented by 8 bits (1 byte), allowing for 256 different characters in standard ASCII encoding.
How It Works
- Each character has an ASCII code (e.g., 'A' = 65)
- The ASCII code is converted to binary (65 = 01000001)
- Each binary number is padded to 8 bits
Use Cases
- Learning about computer encoding
- Creating binary art or messages
- Understanding data representation
- Educational purposes