Convert from Octal to Text
The relationship between ASCII encoded text and the oct 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 oct.
Example: 0o115 => text
1 * 8^2 + 1 * 8^1 + 5 * 8^0 =
64 + 8 + 5 =
77 (= 0b115)
=> M (with ASCII Table)