Binary to string converter for text messages

Interpret fixed-width chunks of bits as code units (often 8-bit bytes), map each value to a character, then concatenate—our Binary to Character page maps one numeric value to one character.

Detailed answer

Classic “binary to text” splits a bitstream into bytes (multiples of 8), converts each byte to a number, then to Unicode/ASCII. This tool’s **Binary to Character** mode is geared to a single integer: you enter one binary value (e.g. 0b01000001) and see the matching character when the value fits the supported range. For full messages, convert each byte’s binary or decimal value separately, or use a dedicated multi-byte / encoding tool if you need UTF-8 stream decoding.

Relationship context

Text in computers is numeric at the bottom: characters are code points or encoded bytes. Moving between raw bits and glyphs is the same idea as radix conversion plus encoding rules.

Quick conversion table

Binary (input)Character (output)
0NUL
0b1SOH
0b10STX
0b11ETX
0b100EOT
0b101ENQ
0b110ACK
0b111BEL
0b1000BS
0b1001TAB
0b1010LF
0b1111SI
0b10000DLE
Binary (input)Character (output)
0b1011VT
0b100000
0b1000000@
0b10000000PADDING CHARACTER
0b100000000Ā
0b1000000000Ȁ
0b10000000000Ѐ
0b100000000000
0b1000000000000က
0b10000000000000 
0b100000000000000䀀
0b1000000000000000耀
0b1111111111111111￿

More Binary converters

Dedicated pages from Binary to every other format (binary, octal, decimal, hexadecimal, character), with the same parsing rules as the main Number System Converter.