How to convert Binary to ASCII/Unicode Text
Converting binary ASCII/Unicode to text we need apply 3 steps:
- Get each byte value from binary, every 8bit is a byte value.
- Get decimal corresponding value each byte.
- Convert character to ASCII code.
Let's see an example. Binary number is 01110100 01101111 01101111 01101100 01101011 01101001 01110100
01110100 is decimal 116 and 116 is 't' character in the ASCII table
01101111 is decimal 111 and 111 is 'o' character in the ASCII table
01101111 is decimal 111 and 111 is 'o' character in the ASCII table
01101100 is decimal 108 and 108 is 'l' character in the ASCII table
01101011 is decimal 107 and 107 is 'k' character in the ASCII table
01101001 is decimal 105 and 105 is 'i' character in the ASCII table
01110100 is decimal 116 and 116 is 't' character in the ASCII table
The Binary number 01110100 01101111 01101111 01101100 01101011 01101001 01110100 is 'toolkit' text.