HomeConversionNumber conversionBinary to ASCII

Binary to ASCII Text Converter

Enter binary code and press Convert (e.g. enter "01001000 01101001" to get "Hi"):

Paste binary code or drop a file

How to Convert Binary to ASCII Text

  1. Split the binary string into 8-bit groups (bytes)
  2. Convert each 8-bit binary group to its decimal value
  3. Look up the decimal value in the ASCII table to get the character
  4. Repeat for each byte

Example

Convert "01001000 01101001" to text:

01001000 = 72 = 'H'
01101001 = 105 = 'i'

Result: Hi

How to Use Binary to Text Converter

  1. Paste binary code (space-separated bytes) in the input box.
  2. Select the input delimiter (space, none, or comma).
  3. Press Convert — the ASCII text appears instantly.
  4. Use Swap to reverse the conversion (text → binary).

See Also

Number Conversion