ASCII characters are from 0 to 127 but only some numbers are printable characters. 32 of them are control characters and are not printable. Is there any way to assign any character to that hex values of 32 character? so that i can print all the 127 characters. I don't want UTF since it take 2 bytes per some characters. I want all characters from 0 to 255 for one byte per character. I'm planning to save the file in ANSI format.
By the way I'm developing this program in Python.
Kindly advice.