ASCII control characters
ASCII reserves the first 32 codes (numbers 0–31 decimal) for
control characters: codes originally intended not to represent printable information, but rather to control devices (such as
printers) that make use of ASCII, or to provide
meta-information
about data streams such as those stored on magnetic tape. For example,
character 10 represents the "line feed" function (which causes a printer
to advance its paper), and character 8 represents "backspace".
RFC 2822 refers to control characters that do not include carriage return, line feed or
white space as non-whitespace control characters.
[34]
Except for the control characters that prescribe elementary
line-oriented formatting, ASCII does not define any mechanism for
describing the structure or appearance of text within a document. Other
schemes, such as
markup languages, address page and document layout and formatting.
The original ASCII standard used only short descriptive phrases for
each control character. The ambiguity this caused was sometimes
intentional (where a character would be used slightly differently on a
terminal link than on a
data stream) and sometimes accidental (such as what "delete" means).
Probably the most influential single device on the interpretation of these characters was the
Teletype Model 33 ASR, which was a printing terminal with an available
paper tape
reader/punch option. Paper tape was a very popular medium for long-term
program storage through the 1980s, less costly and in some ways less
fragile than magnetic tape. In particular, the Teletype Model 33 machine
assignments for codes 17 (Control-Q, DC1, also known as XON), 19
(Control-S, DC3, also known as XOFF), and 127
(Delete)
became de facto standards. Because the keytop for the O key also showed
a left-arrow symbol (from ASCII-1963, which had this character instead
of
underscore),
a noncompliant use of code 15 (Control-O, Shift In) interpreted as
"delete previous character" was also adopted by many early timesharing
systems but eventually became neglected.
The use of Control-S (XOFF, an abbreviation for transmit off) as a
"handshaking" signal warning a sender to stop transmission because of
impending overflow, and Control-Q (XON, "transmit on") to resume
sending, persists to this day in many systems as a manual output control
technique. On some systems Control-S retains its meaning but Control-Q
is replaced by a second Control-S to resume output.
Code 127 is officially named "delete" but the Teletype label was
"rubout". Since the original standard did not give detailed
interpretation for most control codes, interpretations of this code
varied. The original Teletype meaning, and the intent of the standard,
was to make it an ignored character, the same as NUL (all zeroes). This
was useful specifically for paper tape, because punching the all-ones
bit pattern on top of an existing mark would obliterate it. Tapes
designed to be "hand edited" could even be produced with spaces of extra
NULs (blank tape) so that a block of characters could be "rubbed out"
and then replacements put into the empty space.
As video terminals began to replace printing ones, the value of the
"rubout" character was lost. DEC systems, for example, interpreted
"Delete" to mean "remove the character before the cursor" and this
interpretation also became common in Unix systems. Most other systems
used "Backspace" for that meaning and used "Delete" to mean "remove the
character at the cursor". That latter interpretation is the most common
now.
Many more of the control codes have been given meanings quite
different from their original ones. The "escape" character (ESC, code
27), for example, was intended originally to allow sending other control
characters as literals instead of invoking their meaning. This is the
same meaning of "escape" encountered in URL encodings,
C language
strings, and other systems where certain characters have a reserved
meaning. Over time this meaning has been co-opted and has eventually
been changed. In modern use, an ESC sent to the terminal usually
indicates the start of a command sequence, usually in the form of a
so-called "
ANSI escape code"
(or, more properly, a "Control Sequence Introducer") beginning with ESC
followed by a "[" (left-bracket) character. An ESC sent from the
terminal is most often used as an
out-of-band character used to terminate an operation, as in the
TECO and
vi text editors. In
graphical user interface (GUI) and
windowing systems, ESC generally causes an application to abort its current operation or to
exit (terminate) altogether.
The inherent ambiguity of many control characters, combined with
their historical usage, created problems when transferring "plain text"
files between systems. The best example of this is the
newline problem on various
operating systems.
Teletype machines required that a line of text be terminated with both
"Carriage Return" (which moves the printhead to the beginning of the
line) and "Line Feed" (which advances the paper one line without moving
the printhead). The name "Carriage Return" comes from the fact that on a
manual
typewriter
the carriage holding the paper moved while the position where the keys
struck the ribbon remained stationary. The entire carriage had to be
pushed (returned) to the right in order to position the left margin of
the paper for the next line.
DEC operating systems (
OS/8,
RT-11,
RSX-11,
RSTS,
TOPS-10, etc.) used both characters to mark the end of a line so that the console device (originally
Teletype machines)
would work. By the time so-called "glass TTYs" (later called CRTs or
terminals) came along, the convention was so well established that
backward compatibility necessitated continuing the convention. When Gary
Kildall cloned
RT-11 to create
CP/M he followed established
DEC convention. Until the introduction of
PC-DOS in 1981,
IBM
had no hand in this because their 1970s operating systems used EBCDIC
instead of ASCII and they were oriented toward punch-card input and line
printer output on which the concept of "carriage return" was
meaningless. IBM's
PC-DOS (also marketed as
MS-DOS by Microsoft) inherited the convention by virtue of being a clone of
CP/M, and Windows inherited it from MS-DOS.
Unfortunately, requiring two characters to mark the end of a line
introduces unnecessary complexity and questions as to how to interpret
each character when encountered alone. To simplify matters,
plain text files on
Unix and
Amiga systems use line feed (LF) alone as a line terminator. The original
Macintosh OS, on the other hand, used carriage return (CR) alone as a line terminator, however since Apple replaced it with the Unix-based
OS X operating system, they now use line feed (LF) as well.
Transmission of text over the Internet, for protocols as
E-mail and the World Wide Web, uses both characters.
Some operating systems such as the pre-
VMS DEC
operating systems, along with CP/M, tracked file length only in units
of disk blocks and used Control-Z (SUB) to mark the end of the actual
text in the file. For this reason, EOF, or
end-of-file, was used colloquially and conventionally as a
three-letter acronym (TLA) for Control-Z instead of SUBstitute. For a variety of reasons, the end-of-text code,
ETX aka
Control-C, was inappropriate and using Z as the control code to end a file is analogous to it ending the alphabet, a very convenient
mnemonic aid. ASCII
strings ending with the
null character are known as ASCIZ, ASCIIZ or
null-terminated strings.
- ^ The Unicode
characters from the area U+2400 to U+2421 reserved for representing
control characters when it is necessary to print or display them rather
than have them perform their intended function. Some browsers may not
display these properly.
- ^ Caret notation often used to represent control characters on a terminal. On most text terminals, holding down the Ctrl
key while typing the second character will type the control character.
Sometimes the shift key is not needed, for instance ^@ may be typable
with just Ctrl and 2.
- ^ Character Escape Codes in C programming language and many other languages influenced by it, such as Java and Perl (though not all implementations necessarily support all escape codes).
- ^ The Backspace character can also be entered by pressing the ← Backspace key on some systems.
- ^ a b The
ambiguity of Backspace is due to early terminals designed assuming the
main use of the keyboard would be to manually punch paper tape while not
connected to a computer. To delete the previous character, one had to
back up the paper tape punch, which for mechanical and simplicity
reasons was a button on the punch itself and not the keyboard, then type
the rubout character. They therefore placed a key producing rubout at
the location used on typewriters for backspace. When systems used these
terminals and provided command-line editing, they had to use the
"rubout" code to perform a backspace, and often did not interpret the
backspace character (they might echo "^H" for backspace). Other
terminals not designed for paper tape made the key at this location
produce Backspace, and systems designed for these used that character to
back up. Since the delete code often produced a backspace effect, this
also forced terminal manufacturers to make any Delete key produce something other than the Delete character.
- ^ The Tab character can also be entered by pressing the Tab ⇆ key on most systems.
- ^ The Carriage Return character can also be entered by pressing the ↵ Enter or Return key on most systems.
- ^ The
'\e' escape sequence is not part of ISO C and many other language
specifications. However, it is understood by several compilers.
- ^ The Escape character can also be entered by pressing the Esc key on some systems.
- ^ ^^ means Ctrl+^ (pressing the "Ctrl" and caret keys).
- ^ The Delete character can sometimes be entered by pressing the ← Backspace key on some systems.
ASCII printable characters
Codes 20
hex to 7E
hex, known as the printable characters, represent letters, digits,
punctuation marks, and a few miscellaneous symbols. There are 95 printable characters in total.
Code 20
hex, the
space character,
denotes the space between words, as produced by the space-bar of a
keyboard. Since the space character is considered an invisible graphic
(rather than a control character)
[2][1] and thus would not normally be visible, it is represented here by
Unicode
character U+2420 "␠"; Unicode characters U+2422 "␢" and U+2423 "␣" are
also available for use when a visible representation of a space is
necessary.
Code 7F
hex
corresponds to the non-printable "Delete" (DEL) control character and
is therefore omitted from this chart; it is covered in the previous
section's chart.
Earlier versions of ASCII used the up-arrow instead of the
caret (5E
hex) and the left-arrow instead of the
underscore (5F
hex).
[35]
Binary |
Oct |
Dec |
Hex |
Glyph |
010 0000 |
040 |
32 |
20 |
␠ |
010 0001 |
041 |
33 |
21 |
! |
010 0010 |
042 |
34 |
22 |
" |
010 0011 |
043 |
35 |
23 |
# |
010 0100 |
044 |
36 |
24 |
$ |
010 0101 |
045 |
37 |
25 |
% |
010 0110 |
046 |
38 |
26 |
& |
010 0111 |
047 |
39 |
27 |
' |
010 1000 |
050 |
40 |
28 |
( |
010 1001 |
051 |
41 |
29 |
) |
010 1010 |
052 |
42 |
2A |
* |
010 1011 |
053 |
43 |
2B |
+ |
010 1100 |
054 |
44 |
2C |
, |
010 1101 |
055 |
45 |
2D |
- |
010 1110 |
056 |
46 |
2E |
. |
010 1111 |
057 |
47 |
2F |
/ |
011 0000 |
060 |
48 |
30 |
0 |
011 0001 |
061 |
49 |
31 |
1 |
011 0010 |
062 |
50 |
32 |
2 |
011 0011 |
063 |
51 |
33 |
3 |
011 0100 |
064 |
52 |
34 |
4 |
011 0101 |
065 |
53 |
35 |
5 |
011 0110 |
066 |
54 |
36 |
6 |
011 0111 |
067 |
55 |
37 |
7 |
011 1000 |
070 |
56 |
38 |
8 |
011 1001 |
071 |
57 |
39 |
9 |
011 1010 |
072 |
58 |
3A |
: |
011 1011 |
073 |
59 |
3B |
; |
011 1100 |
074 |
60 |
3C |
< |
011 1101 |
075 |
61 |
3D |
= |
011 1110 |
076 |
62 |
3E |
> |
011 1111 |
077 |
63 |
3F |
? |
|
Binary |
Oct |
Dec |
Hex |
Glyph |
100 0000 |
100 |
64 |
40 |
@ |
100 0001 |
101 |
65 |
41 |
A |
100 0010 |
102 |
66 |
42 |
B |
100 0011 |
103 |
67 |
43 |
C |
100 0100 |
104 |
68 |
44 |
D |
100 0101 |
105 |
69 |
45 |
E |
100 0110 |
106 |
70 |
46 |
F |
100 0111 |
107 |
71 |
47 |
G |
100 1000 |
110 |
72 |
48 |
H |
100 1001 |
111 |
73 |
49 |
I |
100 1010 |
112 |
74 |
4A |
J |
100 1011 |
113 |
75 |
4B |
K |
100 1100 |
114 |
76 |
4C |
L |
100 1101 |
115 |
77 |
4D |
M |
100 1110 |
116 |
78 |
4E |
N |
100 1111 |
117 |
79 |
4F |
O |
101 0000 |
120 |
80 |
50 |
P |
101 0001 |
121 |
81 |
51 |
Q |
101 0010 |
122 |
82 |
52 |
R |
101 0011 |
123 |
83 |
53 |
S |
101 0100 |
124 |
84 |
54 |
T |
101 0101 |
125 |
85 |
55 |
U |
101 0110 |
126 |
86 |
56 |
V |
101 0111 |
127 |
87 |
57 |
W |
101 1000 |
130 |
88 |
58 |
X |
101 1001 |
131 |
89 |
59 |
Y |
101 1010 |
132 |
90 |
5A |
Z |
101 1011 |
133 |
91 |
5B |
[ |
101 1100 |
134 |
92 |
5C |
\ |
101 1101 |
135 |
93 |
5D |
] |
101 1110 |
136 |
94 |
5E |
^ |
101 1111 |
137 |
95 |
5F |
_ |
|
Binary |
Oct |
Dec |
Hex |
Glyph |
110 0000 |
140 |
96 |
60 |
` |
110 0001 |
141 |
97 |
61 |
a |
110 0010 |
142 |
98 |
62 |
b |
110 0011 |
143 |
99 |
63 |
c |
110 0100 |
144 |
100 |
64 |
d |
110 0101 |
145 |
101 |
65 |
e |
110 0110 |
146 |
102 |
66 |
f |
110 0111 |
147 |
103 |
67 |
g |
110 1000 |
150 |
104 |
68 |
h |
110 1001 |
151 |
105 |
69 |
i |
110 1010 |
152 |
106 |
6A |
j |
110 1011 |
153 |
107 |
6B |
k |
110 1100 |
154 |
108 |
6C |
l |
110 1101 |
155 |
109 |
6D |
m |
110 1110 |
156 |
110 |
6E |
n |
110 1111 |
157 |
111 |
6F |
o |
111 0000 |
160 |
112 |
70 |
p |
111 0001 |
161 |
113 |
71 |
q |
111 0010 |
162 |
114 |
72 |
r |
111 0011 |
163 |
115 |
73 |
s |
111 0100 |
164 |
116 |
74 |
t |
111 0101 |
165 |
117 |
75 |
u |
111 0110 |
166 |
118 |
76 |
v |
111 0111 |
167 |
119 |
77 |
w |
111 1000 |
170 |
120 |
78 |
x |
111 1001 |
171 |
121 |
79 |
y |
111 1010 |
172 |
122 |
7A |
z |
111 1011 |
173 |
123 |
7B |
{ |
111 1100 |
174 |
124 |
7C |
| |
111 1101 |
175 |
125 |
7D |
} |
111 1110 |
176 |
126 |
7E |
~ |
|
Aliases