and some of the
How Many Names Can One Code Have?
Although these codes are standard from computer to computer, the way they are referred to is not standard. The same ASCII code can be called by many different names. For example, the letter A is represented by the decimal number 65 in ASCII. This code may either be called A or 65. In the BASIC programming language, this code may be referred to as CHR$(65).
At other times, ASCII codes are referred to by their hex value. Hex is short for hexadecimal, which is a
Most of the time we don’t have to give this code system a thought. If you press A on the keyboard, the computer sends the code to print an A to the printer.
Some ASCII codes don’t have keys on the keyboard. The most important of these are the codes that have values of less than 32. These codes are used to control many of the
Most of these control codes also have names that describe their functions. For example ASCII 13, which is the code to start a new line, is called carriage return. The following chart shows many different ways of referring to the code for the carriage return function.
46