I know an ASCII character takes 8 bits but how do you print a character on screen with those bits?
feedback
|
|
The byte is used as a lookup in a font table, and the appropriate pixels are lit for that character at the appropriate position. | |||||||||||||
feedback
|
|
You mean rather than doing
You want to type
or something? I think you'd have to convert it from binary to octal first. Then you can do:
| |||
|
feedback
|
| |||
|
feedback
|
|
In Windows, you can use a character's Alt character code to print it by pressing Alt + [code] on the Numpad. In some cases, the Alt character code coincides with its Unicode character code. Example: Alt + 250 = รบ You can find the whole list of Alt codes by running the Character Map applications (charmap.exe). | |||||||||
feedback
|