Enter binary numbers with any prefix / postfix / delimiter and press the Convert button
(E.g: 01000101 01111000 01100001 01101101 01110000 01101100 01100101):
ASCII text encoding uses fixed 1 byte for each character.
UTF-8 text encoding uses variable number of bytes for each character. This requires delimiter between each binary number.
Convert binary ASCII code to text:
Convert "01010000 01101100 01100001 01101110 01110100 00100000 01110100 01110010 01100101 01100101 01110011" binary ASCII code to text:
Solution:
Use ASCII table to get character from ASCII code.
010100002 = 26+24 = 64+16 = 80 => "P"
011011002 = 26+25+23+22 = 64+32+8+4 = 108 => "l"
011000012 = 26+25+20 = 64+32+1 = 97 => "a"
⁝
For all the binary bytes you should get the text:
"Plant trees"
Use ASCII table:
01000001 = 2^6+2^0 = 64+1 = 65 = 'A' character
Use ASCII table:
00110000 = 2^5+2^4 = 2^5+2^4 = 32+16 = 48 = '0' character