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 01000011

Common ASCII Values

A = 01000001
a = 01100001
0 = 00110000
Space = 00100000

About 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

  1. Each character has an ASCII code (e.g., 'A' = 65)
  2. The ASCII code is converted to binary (65 = 01000001)
  3. Each binary number is padded to 8 bits

Use Cases