The C0 and C1 control code or control character sets define control codes for use in text by computer systems that use ASCII and derivatives of ASCII. The codes 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.

C0 codes are the range 00HEX–1FHEX and the default C0 set was originally defined in ISO 646 (ASCII). C1 codes are the range 80HEX–9FHEX and the default C1 set was originally defined in ECMA-48 (harmonized later with ISO 6429). The ISO/IEC 2022 system of specifying control and graphic characters allows other C0 and C1 sets to be available for specialized applications, but they are rarely used.

C0 controls

ASCII defined 32 control characters, plus a necessary extra character for the DEL character, 7FHEX or 01111111BIN (needed to punch out all the holes on a paper tape and erase it).

This large number of codes was desirable at the time, as multi-byte controls would require implementation of a state machine in the terminal, which was very difficult with contemporary electronics and mechanical terminals.

Only a few codes have maintained their use: BEL, ESC, and the "Format effector" (FEn) characters BS, TAB, LF, VT, FF, and CR. Others are unused or have acquired different meanings such as NUL being the C string terminator. Some data transfer protocols such as ANPA-1312, Kermit, and XMODEM do make extensive use of SOH, STX, ETX, EOT, ACK, NAK and SYN for purposes approximating their original definitions; and some file formats use the "Information Separators" (ISn) such as the Unix info format[1] and Python's splitlines string method.[2]

The names of some codes were changed in ISO 6429:1992 (or ECMA-48:1991) to be neutral with respect to writing direction. 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. In this table both new and old names are shown for the renamed controls (the old name is the one matching the abbreviation).

More information Caret notation, Decimal ...
ASCII control codes, originally defined in ANSI X3.4.[3]
Caret notation
Decimal
Hexadecimal
Abbreviations Name Description
^@000NULNull\0 Does nothing. The code of blank paper tape, and also used for padding to slow transmission.
^A101TC1, SOHStart of Heading First character of the heading of a message.[4]
^B202TC2, STXStart of Text Terminates the header and starts the message text.
^C303TC3, ETXEnd of Text Ends the message text, starts a footer (up to the next TC character).[4][5]
^D404TC4, EOTEnd of Transmission Ends the transmission of one or more messages.[4][5] May place terminals on standby.[5]
^E505TC5, ENQ, WRU[lower-alpha 1]Enquiry Trigger a response at the receiving end, to see if it is still present.
^F606TC6, ACKAcknowledge Indication of successful receipt of a message.
^G707BEL[lower-alpha 2]Bell, Alert\a Call for attention from an operator.
^H808FE0, BSBackspace\b Move one position leftwards. Next character may overprint or replace the character that was there.
^I909FE1, HTCharacter Tabulation,
Horizontal Tabulation
\t Move right to the next tab stop.
^J100AFE2, LFLine Feed\n Move down to the same position on the next line (some devices also moved to the left column).
^K110BFE3, VTLine Tabulation,
Vertical Tabulation
\v Move down to the next vertical tab stop.
^L120CFE4, FFForm Feed\f Move down to the top of the next page.
^M130DFE5, CRCarriage Return\r Move to column zero while staying on the same line.
^N140ESO, LS0[lower-alpha 3]Shift Out Switch to an alternative character set.
^O150FSI, LS1[lower-alpha 3]Shift In Return to regular character set after SO.
^P1610TC7, DC0,[lower-alpha 4] DLEData Link Escape Cause a limited number of contiguously following characters to be interpreted in some different way.[14][15]
^Q1711DC1, XONDevice Control One Turn on (DC1 and DC2) or off (DC3 and DC4) devices.

Teletype[6] used these for the paper tape reader and the paper tape punch. The first use became the de facto standard for software flow control.[16]

^R1812DC2, TAPEDevice Control Two
^S1913DC3, XOFFDevice Control Three
^T2014DC4, TAPEDevice Control Four
^U2115TC8, NAKNegative Acknowledge Negative response to a sender, such as a detected error.
^V2216TC9, SYNSynchronous Idle Sent in synchronous transmission systems when no other character is being transmitted.
^W2317TC10, ETBEnd of Transmission Block 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.
^Y2519EMEnd of medium Indicates on paper or magnetic tapes that the end of the usable portion of the tape had been reached.[3]
^Z261ASUBSubstitute Replaces a character that was found to be invalid or in error. Should be ignored.
^[271BESCEscape \e
[lower-alpha 5]
Alters the meaning of a limited number of following bytes.
Nowadays this is almost always used to introduce an ANSI escape sequence.
^\281CIS4, FS File Separator Can be used as delimiters to mark fields of data structures. US is the lowest level, while RS, GS, and FS are of increasing level to divide groups made up of items of the level beneath it. SP (space) could be considered an even lower level.
^]291DIS3, GSGroup Separator
^^301EIS2, RSRecord Separator
^_311FIS1, USUnit Separator
While not technically part of the C0 control character range, the following two characters can be thought of as having some characteristics of control characters.
 3220SPSpace Move right one character position.
^?1277FDELDelete Should be ignored. Used to delete characters on punched tape by punching out all the holes.
Close
  1. Teletype labelled the key WRU for 'who are you?'[6]
  2. The name BELL is assigned by Unicode to the unrelated emoji character 🔔 (U+1F514). While C0 and C1 control characters were not formally named by the Unicode standard itself at the time, this collided with existing use of BELL as the name of this control character in software following the previous versions of UTS#18 (the Unicode Regular Expressions standard),[7] e.g. in Perl.[8] Unicode now accepts ALERT and BEL (but not BELL) as formal aliases for the control character,[9] although the code chart still lists BELL as the ISO 6429 alias,[10] and the corresponding control picture code point is called SYMBOL FOR BELL. Perl subsequently switched to using BELL for the emoji in version 5.18.[11]
  3. ISO/IEC 2022 (ECMA-35) refers to these as LS0 and LS1 in 8-bit environments, and as SI and SO in 7-bit environments.[12]
  4. The first, 1963 edition of ASCII classified DLE as a device control, rather than a transmission control, and gave it the abbreviation DC0 ("device control reserved for data link escape").[13]
  5. The '\e' escape sequence is not part of ISO C and many other language specifications. However, it is understood by several compilers, including GCC.

C1 controls

In 1973, ECMA-35 and ISO 2022[17] attempted to define a method so an 8-bit "extended ASCII" code could be converted to a corresponding 7-bit code, and vice versa.[18] In a 7-bit environment, the Shift Out (SO) would change the meaning of the 96 bytes 0x20 through 0x7F[lower-alpha 1][20] (i.e. all but the C0 control codes), to be the characters that an 8-bit environment would print if it used the same code with the high bit set. This meant that the range 0x80 through 0x9F could not be printed in a 7-bit environment,[18] thus it was decided that no alternative character set could use them, and that these codes should be additional control codes, which become known as the C1 control codes. To allow a 7-bit environment to use these new controls, the sequences ESC @ through ESC _ were to be considered equivalent.[18] The later ISO 8859 standards abandoned support for 7-bit codes, but preserved this range of control characters.

The first C1 control code set to be registered for use with ISO 2022 was DIN 31626,[21] a specialised set for bibliographic use which was registered in 1979.[22]

The more common general-use ISO/IEC 6429 set was registered in 1983,[23] although the ECMA-48 specification upon which it was based had been first published in 1976[24] and JIS X 0211 (formerly JIS C 6323).[25] Symbolic names defined by RFC 1345 and early drafts of ISO 10646, but not in ISO/IEC 6429 (PAD, HOP and SGC) are also used.[8][26]

Except for SS2 and SS3 in EUC-JP text, and NEL in text transcoded from EBCDIC, the 8-bit forms of these codes were almost never used. CSI, DCS and OSC are used to control text terminals and terminal emulators, but almost always by using their 7-bit escape code representations. Nowadays if these codes are encountered it is far more likely they are intended to be printing characters from that position of Windows-1252 or Mac OS Roman.

More information ESC+, Decimal ...
ISO/IEC 6429 and RFC 1345 C1 control codes
ESC+
Decimal
Hex
Abbr NameDescription[27]
@12880PAD[9]Padding Character[lower-alpha 2] Proposed as a "padding" or "high byte" for single-byte characters to make them two bytes long for easier interoperability with multiple byte characters. Extended Unix Code (EUC) occasionally uses this.[31]
A12981HOP[9]High Octet Preset[lower-alpha 2]Proposed to set the high byte of a sequence of multiple byte characters so they only need one byte each, as a simple form of data compression.
B13082BPHBreak Permitted Here[lower-alpha 3]Follows a graphic character where a line break is permitted. Roughly equivalent to a soft hyphen or zero-width space except it does not define what is printed at the line break.
C13183NBHNo Break Here[lower-alpha 3]Follows the graphic character that is not to be broken. See also word joiner.
D13284INDIndex[lower-alpha 4]Move down one line without moving horizontally, to eliminate ambiguity about the meaning of LF.
E13385NELNext LineEquivalent to CR+LF, to match the EBCDIC control character.
F13486SSAStart of Selected AreaUsed by block-oriented terminals. In xterm ESC F moves to the lower-left corner of the screen, since certain software assumes this behaviour.[34]
G13587ESAEnd of Selected Area
H13688HTS
  • Character Tabulation Set
  • Horizontal Tabulation Set
Set a tab stop at the current position.
I13789HTJ
  • Character Tabulation With Justification
  • Horizontal Tabulation With Justification
Right-justify the text since the last tab against the next tab stop.
J1388AVTS
  • Line Tabulation Set
  • Vertical Tabulation Set
Set a vertical tab stop.
K1398BPLD
  • Partial Line Forward
  • Partial Line Down
To produce subscripts and superscripts in ISO/IEC 6429.
Subscripts use PLD text PLU while superscripts use PLU text PLD.
L1408CPLU
  • Partial Line Backward
  • Partial Line Up
M1418DRI
  • Reverse Line Feed
  • Reverse Index
Move up one line.
N1428ESS2Single-Shift 2Next character is from the G2 or G3 sets, respectively.
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). Xterm defined a number of these.[35]
Q14591PU1Private Use 1Reserved for private function agreed on between the sender and the recipient of the data.
R14692PU2Private Use 2
S14793STSSet Transmit State
T14894CCHCancel characterDestructive backspace, to eliminate ambiguity about meaning of BS.
U14995MWMessage Waiting
V15096SPAStart of Protected AreaUsed by block-oriented terminals.
W15197EPAEnd of Protected Area
X15298SOSStart of String[lower-alpha 3]Followed by a control string terminated by ST (0x9C) which (unlike DCS, OSC, PM or APC) may contain any character except SOS or ST.
Y15399SGC,[9] SGCI[36]Single Graphic Character Introducer[lower-alpha 2] Intended to allow an arbitrary Unicode character to be printed; it would be followed by that character, most likely encoded in UTF-1.[36]
Z1549ASCISingle Character Introducer[lower-alpha 3]To be followed by a single printable character (0x20 through 0x7E) or format effector (0x08 through 0x0D), and to print it as ASCII no matter what graphic or control sets were in use.
[1559BCSIControl Sequence IntroducerUsed to introduce control sequences that take parameters. Used for ANSI escape sequences.
\1569CSTString TerminatorTerminates a string started by DCS, SOS, OSC, PM or APC.
]1579DOSCOperating System CommandFollowed by a string of printable characters (0x20 through 0x7E) and format effectors (0x08 through 0x0D), terminated by ST (0x9C), intended for use to allow in-band signaling of protocol information, but rarely used for that purpose.

Some terminal emulators, including xterm, use OSC sequences for setting the window title and changing the colour palette. They may also support terminating an OSC sequence with BEL instead of ST.[37] Kermit used APC to transmit commands.[38]

^1589EPMPrivacy Message
_1599FAPCApplication Program Command
Close
  1. In early versions the range excluded SP and DEL[19]
  2. Not part of ISO/IEC 6429 (ECMA-48)[8][26][28]:4[29]:5[30]:8
  3. Not part of the first edition of ISO/IEC 6429.[23][28]:4
  4. Deprecated in 1988 and withdrawn in 1992 from ISO/IEC 6429[30]:87 (1986[32] and 1991[33] respectively for ECMA-48).

Other control code sets

The ISO/IEC 2022 (ECMA-35) extension mechanism allowed escape sequences to change the C0 and C1 sets. The standard C0 control character set shown above is chosen with the sequence ESC ! @ and the above C1 set chosen with the sequence ESC " C.[23]

Several official and unofficial alternatives have been defined, but this is pretty much obsolete. Most were forced to retain a good deal of compatibility with the ASCII controls for interoperability. The standard makes ESC,[39][40] SP and DEL[lower-alpha 1] "fixed" coded characters, which are available in their ASCII locations in all encodings that conform to the standard.[42] It also specifies that if a C0 set included transmission control (TCn) codes, they must be encoded at their ASCII locations[39] and could not be put in a C1 set,[43] and any new transmission controls must be in a C1 set.[39]

Other C0 control code sets

  • ANPA-1312, a text markup language used for news transmission, replaces several C0 control characters.
  • IPTC 7901, the newer international version of the above, has its own variations.
  • Videotex has a completely different set.
  • Teletext also defines a set similar to Videotex.
  • T.61/T.51,[44] and others[45] replaced EM and GS with SS2 and SS3 so these functions could be used in a 7-bit environment.
  • Some sets replaced FS with SS2,[46] (same as ANPA-1312).
  • The now-withdrawn JIS C 6225, designated JIS X 0207 in later sources.[47] replaced FS with CEX or "Control Extension"[48] which introduces control sequences for vertical text behaviour, superscripts and subscripts[49] and for transmitting custom character graphics.[47]

Replacement C1 character sets

  • A specialized C1 control code set is registered for bibliographic use (including string collation), such as by MARC-8.[22][50][51]
  • Various specialised C1 control code sets are registered for use by Videotex formats.[21]
  • EBCDIC defines up to 29 additional control codes besides those present in ASCII. When translating EBCDIC to Unicode (or to ISO 8859), these codes are mapped to C1 control characters in a manner specified by IBM's Character Data Representation Architecture (CDRA).[52][53] Although the New Line (NL) does translate to the ISO/IEC 6429 NEL (although it is often swapped with LF, following UNIX line ending convention),[52] the remainder of the control codes do not correspond. For example, the EBCDIC control SPS and the ECMA-48 control PLU are both used to begin a superscript or end a subscript, but are not mapped to one another. Extended-ASCII-mapped EBCDIC can therefore be regarded as having its own C1 set, although it is not registered with the ISO-IR registry for ISO/IEC 2022.[21]

Unicode

Unicode reserves the 65 code points described above for compatibility with the C0 and C1 control codes, giving them the general category Cc (control). These are:

Unicode only specifies semantics for the C0 format controls HT, LF, VT, FF, and CR (note BS is missing); the C0 information separators FS, GS, RS, US (and SP); and the C1 control NEL.[54] The rest of the codes are transparent to Unicode and their meanings are left to higher-level protocols, with ISO/IEC 6429 suggested as a default.[54]

Unicode includes many additional format effector characters besides these, such as marks, embeds, isolates and pops for explicit bidirectional formatting, and the zero-width joiner and non-joiner for controlling ligature use. However these are given the general category Cf (format) rather than Cc.

See also

Footnotes

  1. ISO/IEC 4873 extends this requirement to the C1 SS2 and SS3,[41] although ISO/IEC 2022 itself does not.

References

Wikiwand in your browser!

Seamless Wikipedia browsing. On steroids.

Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.

Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.