Binary ↔ Text Converter
Convert between binary code and text
01001000 01100101 01101100 01101100 01101111
Common ASCII Characters
About Binary
Binary is a base-2 numeral system using only 0 and 1. Each binary digit (bit) represents a power of 2. Eight bits make one byte, which can represent values from 0 to 255.
ASCII (American Standard Code for Information Interchange) assigns numbers to characters. For example, 'A' = 65 = 01000001 in binary.
Example: "Hi" = "01001000 01101001" (H=72, i=105)