CR 13
0DHCTRL/M
CHR$(13)The abbreviation of its name Its decimal ASCII code
Its hexadecimal ASCII code ItsSo your problem is to figure out what code you want to use, no matter what it is called. You may find that this can be quite a problem. Your computer’s manual may say to use ASCII 10 while your spreadsheet program recommends a CTRL/J. You need to know that they are both talking about the same code.
This manual tells you the different names for the same code. Appendix A gives a complete summary of all the control codes (also called commands). Appendix E contains a conversion chart for all the common names for the ASCII codes.
Some of the
Of course the
Here is an example of how the escape code is used. It may seem tricky at first, but follow along and you’ll soon understand. The code to turn on the italic print function is <ESC> “4”. The 4 in this code is the numeral 4, not ASCII 4; the numeral 4 is ASCII 52.
Remember that the ASCII codes 0 through 32 have commonly used abbreviations for their names. In these cases we use the abbreviations. <ESC>q is the abbreviation for escape, which is also ASCII 27.
Therefore, the <ESC> “4” that turns on italic print actually is ASCII27followed by ASCII 52. But <ESC> “4” is easier to understand and remember.47