Control characters , MIL-STD-188-100, 1972) ASCII reserves the first 32
code points (numbers 0–31 decimal) and the last one (number 127 decimal) for
control characters. These are codes intended to control
peripheral devices (such as
printers), or to provide
meta-information about data streams, such as those stored on magnetic tape. Despite their name, these code points do not represent printable characters (i.e. they are not characters at all, but signals). For debugging purposes, "placeholder" symbols (such as those given in
ISO 2047 and its predecessors) are assigned to them. For example, character 0x0A represents the "line feed" function (which causes a printer to advance its paper), and character 8 represents "
backspace". refers to control characters that do not include carriage return, line feed or
white space as non-whitespace control characters. 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, such as when a character would be used slightly differently on a terminal link or in a
data stream. Probably the most influential single device affecting 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 until 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. The Model 33 was also notable for taking the description of control-G (code 7, BEL, meaning audibly alert the operator) literally, as the unit contained an actual bell which it rang when it received a BEL character. 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. When a Teletype 33 ASR equipped with the automatic paper tape reader received a control-S (XOFF, an abbreviation for transmit off), it caused the tape reader to stop; receiving control-Q (XON, transmit on) caused the tape reader to resume. This so-called
flow control technique became adopted by several early computer operating systems as a "handshaking" signal warning a sender to stop transmission because of impending
buffer overflow; it 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. The 33 ASR also could be configured to employ control-R (DC2) and control-T (DC4) to start and stop the tape punch; on some units equipped with this function, the corresponding control character lettering on the keycap above the letter was TAPE and TAPE respectively.
Delete vs backspace The Teletype could not move its typehead backwards, so it did not have a key on its keyboard to send a BS (backspace). Instead, there was a key marked that sent code 127 (DEL). The purpose of this key was to erase mistakes in a manually-input paper tape: the operator had to push a button on the tape punch to back it up, then type the rubout, which punched all holes and replaced the mistake with a character that was intended to be ignored. Teletypes were commonly used with the less-expensive computers from
Digital Equipment Corporation (DEC); these systems had to use what keys were available, and thus the DEL character was assigned to erase the previous character. Because of this, DEC video terminals (by default) sent the DEL character for the key marked "Backspace" while the separate key marked "Delete" sent an
escape sequence; many other competing terminals sent a BS character for the backspace key. The early Unix tty drivers, unlike some modern implementations, allowed only one character to be set to erase the previous character in canonical input processing (where a very simple line editor is available); this could be set to BS
or DEL, but not both, resulting in recurring situations of ambiguity where users had to decide depending on what terminal they were using (
shells that allow line editing, such as
ksh,
bash, and
zsh, understand both). The assumption that no key sent a BS character allowed Ctrl+H to be used for other purposes, such as the "help" prefix command in
GNU Emacs.
Escape Many more of the control characters have been assigned meanings quite different from their original ones. The "escape" character (ESC, code 27), for example, was intended originally to allow sending of other control characters as literals instead of invoking their meaning, an "escape sequence". 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 interpretation has been co-opted and has eventually been changed. In modern usage, an ESC sent
to the terminal usually indicates the start of a command sequence, which can be used to address the cursor, scroll a region, set/query various terminal properties, and more. They are usually in the form of a so-called "
ANSI escape code" (often starting with a "
Control Sequence Introducer", "CSI", "") from
ECMA-48 (1972) and its successors. Some escape sequences do not have introducers, like the "Reset to Initial State", "RIS" command "". In contrast, an ESC read
from the terminal is most often used as an
out-of-band character used to terminate an operation or special mode, 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.
End of line The reapplication of some control characters to new meanings created problems when transferring "plain text" files between systems. The best example of this is the
newline problem in various
operating systems. Teletype machines required that a line of text be terminated with a "carriage return" (to move the printhead to the beginning of the line) followed by a "line feed" (to advance the paper by one line). The name "carriage return" comes from the fact that, on a manual
typewriter, the carriage holding the paper moves while the typebars that strike the ribbon remain stationary. The entire carriage must be pushed to the right ("returned") in order to position the paper for the next line. DEC operating systems (
OS/8,
RT-11,
RSX-11,
RSTS,
TOPS-10, etc.) stored both characters at the end of each line in textual files, as needed by Teletype machines. When so-called "glass TTYs" were introduced (later called CRTs or "dumb terminals"), they followed the same logic, expecting the same CR and LF characters. When
Gary Kildall created
CP/M, he was inspired by some of the command line interface conventions used in DEC's RT-11 operating system. Until the introduction of
IBM PC DOS in 1981,
IBM had no influence in this, because their 1970s operating systems used EBCDIC encoding 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 CRLF convention by virtue of being loosely based on CP/M, and
Windows, in turn, inherited it from MS-DOS. Placing CR and LF at the end of each line in a
plain text document or data stream reflects what terminals and printers needed to receive, to display that material.
Multics introduced an innovation: it used only one character (LF), to represent the end of the line in stored files and in data streams. Upon output, the tty driver converts the LF to CRLF, so files can be printed to a terminal without needing a command to explicitly convert the file format.
Unix and
Unix-like systems adopted this design from Multics, as did
Amiga systems.
UNIX documents say "newline" or "NL" to refer to the line terminator. Contrarily, the Radio Shack
TRS-80,
Apple DOS,
Apple ProDOS, and
classic Mac OS used a lone carriage return (CR) to terminate lines. Apple's later operating system, Mac OS X (now called
macOS) is based on Unix, so it uses line feed (LF). Computers attached to the
ARPANET included machines running operating systems such as TOPS-10 and
TENEX, which used CR-LF line endings; operating systems such as Multics, which used LF line endings; and operating systems such as
OS/360, which represented lines as a character count followed by the characters of the line and which used EBCDIC rather than ASCII encoding. To enable communication between all these systems, the
Telnet protocol defined a "Network Virtual Terminal" (NVT), wherein a single text format (ASCII with CR-LF line endings) was used for transmission and each system converted to/from its own native representation. The
File Transfer Protocol adopted the Telnet protocol, including the Network Virtual Terminal, for transmitting commands and for transferring textual files (known as "ASCII mode"). Internet E-mail is built atop the NVT. The World Wide Web's
HTTP uses a modified NVT: the standard allows lone CR and LF characters but requires that each be interpreted as an NVT CRLF. Complexity arose in network-facing systems that didn't follow the NVT mechanism, such as some version control systems. Bugs sometimes expose a system's native implementation to other systems on the Internet, causing data corruption.
End of file/stream The PDP-6 monitor, For these reasons, EOF, or
end-of-file, was used colloquially and conventionally as a
three-letter acronym for control-Z instead of SUBstitute. The end-of-text character (
ETX), also known as
control-C, was inappropriate for a variety of reasons, while using control-Z as the control character to end a file is analogous to the letter Z's position at the end of the alphabet, and serves as a very convenient
mnemonic aid. A historically common and still prevalent convention uses the ETX character convention to interrupt and halt a program via an input data stream, usually from a keyboard. The Unix terminal driver uses the end-of-transmission character (
EOT), also known as control-D, to indicate the end of a data stream. In the
C programming language, and in Unix conventions, the
null character is used to terminate text
strings; such
null-terminated strings can be known in abbreviation as ASCIZ or ASCIIZ, where here Z stands for "zero". ==Table of codes==