Skip Navigation

Binary to string converter

 

How to convert Binary to String

Each 8-bit binary number represents one character.

8-bit binary → ASCII/UTF-8 character

Convert each 8-bit group to its character:

01001000=H, 01100101=e, 01101100=l, 01101100=l, 01101111=o → 'Hello'

Example

Convert binary to 'Hello':

01001000 01100101 01101100 01101100 01101111 → Hello



See also