Convert from Binary to Text

Convert from Binary to Text

The relationship between ASCII encoded text and the bin value of the characters is described in the ASCII table. It descripes the mapping between each character and a 7 bit value, with will be converted to bin.

Example: 0b01001101 => text
0 * 2^7 + 1 * 2^6 + 0 * 2^5 + 0 * 2^4 + 1 * 2^3 + 1 * 2^2 + 0 * 2^1 + 1 * 2^0 =
2^6 + 2^3 + 2^2 + 2^0 =
64 + 8 + 4 + 1 =
77 (= 0b01001101)
=> M (with ASCII Table)