C0 and C1 control codes

The C0 and C1 control code or control character sets define control codes for use in text by computer systems that use the ISO/IEC 2022 system of specifying control and graphic characters. Most character encodings, in addition to representing printable characters, also have characters such as these that represent additional information about the text, such as the position of a cursor, an instruction to start a new line, or a message that the text has been received.

The C0 set defines codes in the range 00HEX1FHEX and the C1 set defines codes in the range 80HEX9FHEX. The default C0 set was originally defined in ISO 646 (ASCII), while the default C1 set was originally defined in ECMA-48 (harmonized later with ISO 6429). While other C0 and C1 sets are available for specialized applications, they are rarely used.

Encoding interoperability

While the C1 control characters are used in conjunction with the ISO/IEC 8859 series of graphical character sets among others, they are rarely used directly, except on specific platforms such as OpenVMS. When they turn up in documents, Web pages, e-mail messages, etc., which are ostensibly in an ISO-8859-n encoding, their code positions generally refer instead to the characters at that position in a proprietary, system-specific encoding such as Windows-1252 or the Apple Macintosh (Mac OS Roman) character set that use the codes provided for representation of the C1 set with a single 8-bit byte to instead provide additional graphic characters, though this is technically invalid under the ISO encodings.

Unicode sets aside 65 code points for compatibility with ISO/IEC 2022. The Unicode control characters cover U+0000U+001F (C0 controls), U+007F (delete), and U+0080U+009F (C1 controls). Unicode only specifies semantics for U+001CU+001F, U+0009U+000D, and U+0085. The rest of the control characters are transparent to Unicode and their meanings are left to higher-level protocols. The C1 characters in Unicode require 2 bytes to be encoded in UTF-8 (for instance CSI at U+009B is encoded as the bytes 0xC2, 0x9B in UTF-8). Thus the corresponding control functions are more commonly accessed using the equivalent two byte escape sequence intended for use with systems that have only 7-bit bytes.

Protocol interoperability and use

Computer applications dealing with plain text only need to concern themselves with the six format effectors (0x08 through 0x0D) in the default C0 set. Only HT, LF, and CR are universally well handled. Occasionally BS is used to overprint two characters, and VT and FF are sometimes handled. On the other hand, the C1 control character NEL intended as a single byte substitute for the common two-byte sequence CR LF is often accepted by plain text applications. Very few applications interpret the other C0 and C1 control codes, as they are not needed for plain text.

The ESC code is used extensively to introduce commands to control printing and display devices, for instance in the ANSI escape codes, and Printer Command Language (PCL), the printer language from Hewlett-Packard printers and compatibles.

NUL has the meaning of "end of string" in the programming language C and derivatives such as C++. This meaning is usually not intended in a text stream, but the result is that NUL often cannot be assigned any other meaning.

In addition, some transmission protocols such as ANPA-1312 do make extensive use of control characters SOH, STX, ETX and EOT. Other well known but now nearly obsolete ones are BEL, ACK, NAK and SYN.

The official English language names of some control codes were revised in the most recent edition of the standard for control codes in general (ISO 6429:1992 or ECMA-48:1991) to be neutral with respect to the graphic characters used with them, and to not assume that, as in the Latin script, lines are written on a page from top to bottom and that characters are written on a line from left to right. The abbreviations used were not changed, as the standard had already specified that those would remain unchanged when the standard is translated to other languages. Where the name has been changed, the original name from which the abbreviation was derived is also given in small type in the tables below.

C0 (ASCII and derivatives)

These are the standard ASCII control codes. If using the ISO/IEC 2022 extension mechanism, they are designated as the active C0 control character set with the octet sequence 0x1B 0x21 0x40 (ESC ! @).

Seq Dec Hex Acronym Symbol Name C Description
^@0000NULNull \0 Originally used to allow gaps to be left on paper tape for edits. Later used for padding after a code that might take a terminal some time to process (e.g. a carriage return or line feed on a printing terminal). Now often used as a string terminator, especially in the programming language C.
^A0101SOHStart of Heading First character of a message header.
^B0202STXStart of Text First character of message text, and may be used to terminate the message heading.
^C0303ETXEnd of Text Often used as a "break" character (Ctrl-C) to interrupt or terminate a program or process.
^D0404EOTEnd of Transmission Often used on Unix to indicate end-of-file on a terminal.
^E0505ENQEnquiry Signal intended to trigger a response at the receiving end, to see if it is still present.
^F0606ACKAcknowledge Response to an ENQ, or an indication of successful receipt of a message.
^G0707BELBell\a Originally used to sound a bell on the terminal. Later used for a beep on systems that didn't have a physical bell. May also quickly turn on and off inverse video (a visual bell).
^H0808BS Backspace\b Move the cursor one position leftwards. On input, this may delete the character to the left of the cursor. On output, where in early computer technology a character once printed could not be erased, the backspace was sometimes used to generate accented characters in ASCII. For example, à could be produced using the three character sequence a BS ` (or, using the characters’ hex values, 0x61 0x08 0x60). This usage is now deprecated and generally not supported. To provide disambiguation between the two potential uses of backspace, the cancel character control code was made part of the standard C1 control set.
^I0909HT Character Tabulation, Horizontal Tabulation\t Position to the next character tab stop.
^J100ALF Line Feed\n On typewriters, printers, and some terminal emulators, moves the cursor down one row without affecting its column position. On Unix, used to mark end-of-line. In DOS, Windows, and various network standards, LF is used following CR as part of the end-of-line mark.
^K110BVT Line Tabulation, Vertical Tabulation\v Position the form at the next line tab stop.
^L120CFF Form Feed\f On printers, load the next page. Treated as whitespace in many programming languages, and may be used to separate logical divisions in code. In some terminal emulators, it clears the screen. It still appears in some common plain text files as a page break character, such as the RFCs published by IETF.
^M130DCR Carriage Return\r Originally used to move the cursor to column zero while staying on the same line. On classic Mac OS (pre-Mac OS X), as well as in earlier systems such as the Apple II and Commodore 64, used to mark end-of-line. In DOS, Windows, and various network standards, it is used preceding LF as part of the end-of-line mark. The Enter or Return key on a keyboard will send this character, but it may be converted to a different end-of-line sequence by a terminal program.
^N140ESO Shift Out Switch to an alternative character set.
^O150FSI Shift In Return to regular character set after Shift Out.
^P1610DLEData Link Escape Cause the following octets to be interpreted as raw data, not as control codes or graphic characters. Returning to normal usage would be implementation dependent.

^Q1711DC1Device Control One (XON) These four control codes are reserved for device control, with the interpretation dependent upon the device they were connected. DC1 and DC2 were intended primarily to indicate activating a device while DC3 and DC4 were intended primarily to indicate pausing or turning off a device. In actual practice DC1 and DC3 (known also as XON and XOFF respectively in this usage) quickly became the de facto standard for software flow control.
^R1812DC2Device Control Two
^S1913DC3Device Control Three (XOFF)
^T2014DC4Device Control Four
^U2115NAKNegative Acknowledge Sent by a station as a negative response to the station with which the connection has been set up. In binary synchronous communication protocol, the NAK is used to indicate that an error was detected in the previously received block and that the receiver is ready to accept retransmission of that block. In multipoint systems, the NAK is used as the not-ready reply to a poll.
^V2216SYNSynchronous Idle Used in synchronous transmission systems to provide a signal from which synchronous correction may be achieved between data terminal equipment, particularly when no other character is being transmitted.
^W2317ETBEnd of Transmission Block Indicates the end of a transmission block of data when data are divided into such blocks for transmission purposes.
^X2418CANCancel Indicates that the data preceding it are in error or are to be disregarded.
^Y2519EM End of medium Intended as means of indicating on paper or magnetic tapes that the end of the usable portion of the tape had been reached.
^Z261ASUBSubstitute Originally intended for use as a transmission control character to indicate that garbled or invalid characters had been received. It has often been put to use for other purposes when the in-band signaling of errors it provides is unneeded, especially where robust methods of error detection and correction are used, or where errors are expected to be rare enough to make using the character for other purposes advisable. In DOS, Windows and other CP/M derivatives, it is used to indicate the end of file, both when typing on the terminal, and sometimes in text files stored on disk.
^[271BESCEscape\e[1] The Esc key on the keyboard will cause this character to be sent on most systems. It can be used in software user interfaces to exit from a screen, menu, or mode, or in device-control protocols (e.g., printers and terminals) to signal that what follows is a special command sequence rather than normal text. In systems based on ISO/IEC 2022, even if another set of C0 control codes are used, this octet is required to always represent the escape character.

^\281CFS File Separator Can be used as delimiters to mark fields of data structures. If used for hierarchical levels, US is the lowest level (dividing plain-text data items), while RS, GS, and FS are of increasing level to divide groups made up of items of the level beneath it.
^]291DGS Group Separator
^^301ERS Record Separator
^_311FUS Unit Separator
While not technically part of the C0 control character range, the following two characters are defined in ISO/IEC 2022 as always being available regardless of which sets of control characters and graphics characters have been registered. They can be thought of as having some characteristics of control characters.
 3220SPSpace Space is a graphic character. It has a visual representation consisting of the absence of a graphic symbol. It causes the active position to be advanced by one character position. In some applications, Space can be considered a lowest-level "word separator" to be used with the adjacent separator characters.
^?1277FDELDelete Not technically part of the C0 control character range, this was originally used to mark deleted characters on paper tape, since any character could be changed to all ones by punching holes everywhere. On VT100 compatible terminals, this is the character generated by the key labelled ⌫, usually called backspace on modern machines, and does not correspond to the PC delete key.

C1 set

These are the most common extended control codes. If using the ISO/IEC 2022 extension mechanism, they are designated as the active C1 control character set with the sequence 0x1B 0x22 0x43 (ESC " C). Individual control functions can be accessed with the 7-bit equivalents 0x1B 0x40 through 0x1B 0x5F (ESC @ through ESC _).

Esc+ Dec Hex Acro Name Description
@12880PADPadding CharacterNot part of ISO/IEC 6429 (ECMA-48). In early drafts of ISO 10646, this was used to introduce non-ASCII characters; this use was removed in later drafts.[2]
A12981HOPHigh Octet Preset
B13082BPHBreak Permitted HereFollows a graphic character where a line break is permitted. Roughly equivalent to a soft hyphen except that the means for indicating a line break is not necessarily a hyphen. Not part of the first edition of ISO/IEC 6429.[3]
C13183NBHNo Break HereFollows the graphic character that is not to be broken. Not part of the first edition of ISO/IEC 6429.[3]
D13284INDIndexMove the active position one line down, to eliminate ambiguity about the meaning of LF. Deprecated in 1988 and withdrawn in 1992 from ISO/IEC 6429 (1986 and 1991 respectively for ECMA-48).
E13385NELNext LineEquivalent to CR+LF. Used to mark end-of-line on some IBM mainframes.
F13486SSAStart of Selected AreaUsed by block-oriented terminals.
G13587ESAEnd of Selected Area
H13688HTSCharacter Tabulation Set
Horizontal Tabulation Set
Causes a character tabulation stop to be set at the active position.
I13789HTJCharacter Tabulation With Justification
Horizontal Tabulation With Justification
Similar to Character Tabulation, except that instead of spaces or lines being placed after the preceding characters until the next tab stop is reached, the spaces or lines are placed preceding the active field so that preceding graphic character is placed just before the next tab stop.
J1388AVTSLine Tabulation Set
Vertical Tabulation Set
Causes a line tabulation stop to be set at the active position.
K1398BPLDPartial Line Forward
Partial Line Down
Used to produce subscripts and superscripts in ISO/IEC 6429, e.g., in a printer.
Subscripts use PLD text PLU while superscripts use PLU text PLD..
L1408CPLUPartial Line Backward
Partial Line Up
M1418DRIReverse Line Feed
Reverse Index
N1428ESS2Single-Shift 2Next character invokes a graphic character from the G2 or G3 graphic sets respectively. In systems that conform to ISO/IEC 4873 (ECMA-43), even if a C1 set other than the default is used, these two octets may only be used for this purpose.
O1438FSS3Single-Shift 3
P14490DCSDevice Control StringFollowed by a string of printable characters (0x20 through 0x7E) and format effectors (0x08 through 0x0D), terminated by ST (0x9C).
Q14591PU1Private Use 1Reserved for a function without standardized meaning for private use as required, subject to the prior agreement of the sender and the recipient of the data.
R14692PU2Private Use 2
S14793STSSet Transmit State
T14894CCHCancel characterDestructive backspace, intended to eliminate ambiguity about meaning of BS.
U14995MWMessage Waiting
V15096SPAStart of Protected AreaUsed by block-oriented terminals.
W15197EPAEnd of Protected Area
X15298SOSStart of StringFollowed by a control string terminated by ST (0x9C) that may contain any character except SOS or ST. Not part of the first edition of ISO/IEC 6429.[3]
Y15399SGCISingle Graphic Character IntroducerNot part of ISO/IEC 6429. In early drafts of ISO 10646, was used to encode a single non-ASCII character. In later drafts, this facility was removed.[2]
Z1549ASCISingle Character IntroducerTo be followed by a single printable character (0x20 through 0x7E) or format effector (0x08 through 0x0D). The intent was to provide a means by which a control function or a graphic character that would be available regardless of which graphic or control sets were in use could be defined. Definitions of what the following byte would invoke was never implemented in an international standard. Not part of the first edition of ISO/IEC 6429.[3]
[1559BCSIControl Sequence IntroducerUsed to introduce control sequences that take parameters.
\1569CSTString Terminator
]1579DOSCOperating System CommandFollowed by a string of printable characters (0x20 through 0x7E) and format effectors (0x08 through 0x0D), terminated by ST (0x9C). These three control codes were intended for use to allow in-band signaling of protocol information, but are rarely used for that purpose.
^1589EPMPrivacy Message
_1599FAPCApplication Program Command

See also

References

  1. The '\e' escape sequence is not part of ISO C and many other language specifications. However, it is understood by several compilers, including GCC.
  2. 1 2 Ken Whistler (July 20, 2011). "Formal Name Aliases for Control Characters, L2/11-281". Unicode Consortium.
  3. 1 2 3 4 "C1 Control Set of ISO 6429:1983, International Register of Coded Character Sets, Registration Number 77" (PDF). Archived from the original (PDF) on 2014-07-01.
This article is issued from Wikipedia - version of the 10/6/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.