2023年3月 : shinichiwanko2000のblog (2025)

C0 control codes

Almost all users assume some functions of some single-byte characters. Initially defined as part of ASCII, the default C0 control code set is now defined in ISO 6429 (ECMA-48 ), making it part of the same standard as the C1 set invoked by the ANSI escape sequences (although ISO 2022 allows the ISO 6429 C0 set to be used without the ISO 6429 C1 set, and vice versa, provided that 0x1B is always ESC ). This is used to shorten the amount of data transmitted, or to perform some functions that are unavailable from escape sequences:

Popular C0 control codes (not an exhaustive list )
^C0AbbrNameEffect
^G7BELBellMakes an audible noise.
^H8BSBackspaceMoves the cursor left (but may "backwards wrap" if cursor is at start of line).
^I9HTTabMoves the cursor right to next multiple of 8.
^J0x0ALFLine FeedMoves to next line, scrolls the display up if at bottom of the screen. Usually does not move horizontally, though programs should not rely on this.
^L0x0CFFForm FeedMove a printer to top of next page. Usually does not move horizontally, though programs should not rely on this. Effect on video terminals varies.
^M0x0DCRCarriage ReturnMoves the cursor to column zero.
^[0x1BESCEscapeStarts all the escape sequences

Escape sequences vary in length. The general format for an ANSI-compliant escape sequence is defined by ANSI X3.41 (equivalent to ECMA-35 or ISO/IEC 2022「」[< https://standards.globalspec.com/std/293044/ansi-x3-41 >This Stencil型板、原紙[^謄写版[ステンシル]で~を^刷る(印刷する )? ] app is disabled for this browser., < http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/publications/ISCIE2004.pdf >[PDF ] ANSIキー配列の制定に至るまで - 漢字情報研究センター - 京都大学{1988 年 1 月 27 日に制定された ANSI X3.154-1988. } ] ). The escape sequences consist only of bytes in the range 0x20—0x7F (all the non-control ASCII characters), and can be parsed without looking ahead. The behavior when a control character, a byte with the high bit set, or a byte that is not part of any valid sequence, is encountered before the end is undefined.

Fe Escape sequences

If the ESC is followed by a byte in the range 0x40 to 0x5F, the escape sequence is of type Fe. Its interpretation is delegated to the applicable C1 control code< https://ja.wikipedia.org/wiki/%E5%88%B6%E5%BE%A1%E6%96%87%E5%AD%97 >/wiki/制御文字{制御文字にどのような文字コードを割り当てるかは、ASCII、EBCDICなどの文字コード体系により異なる. ASCIIでは0から31および127が制御文字に割り当てられている(技術的にはこれをC0制御コード(英語版 )という )ISO 8859で定義される拡張ASCIIでは、これに128から159までの制御文字を追加した。これは C1制御コード(< https://en.wikipedia.org/wiki/C0_and_C1_control_codes >英語版 )と呼ばれる. } standard. Accordingly, all escape sequences corresponding to C1 control codes from ANSI X3.64 / ECMA-48 follow this format.

The standard says that, in 8-bit environments, the control functions corresponding to type Fe escape sequences (those from the set of C1 control codes ) can be represented as single bytes in the 0x80–0x9F range. This is possible in character encodings conforming to the provisions for an 8-bit code made in ISO 2022, such as the ISO 8859 series. However, in character encodings used on modern devices such as UTF-8 or CP-1252, those codes are often used for other purposes, so only the 2-byte sequence is typically used. In the case of UTF-8, representing a C1 control code via the C1 Controls and Latin-1 Supplement block results in a different two-byte code (e.g. 0xC2,0x8E for U+008E ), but no space is saved this way.

Some type Fe (C1 set element) ANSI escape sequences (not an exhaustive list )
CodeC1AbbrNameEffect
ESC N0x8ESS2Single Shift TwoSelect a single character from one of the alternative character sets. SS2 selects the G2 character set, and SS3 selects the G3 character set. In a 7-bit environment, this is followed by one or more GL bytes (0x20–0x7F ) specifying a character from that set. In an 8-bit environment, these may instead be GR bytes (0xA0–0xFF ).
ESC O0x8FSS3Single Shift Three
ESC P0x90DCSDevice Control StringTerminated by ST. Xterm's uses of this sequence include defining User-Defined Keys, and requesting or setting Termcap/Terminfo data.
ESC [0x9BCSIControl Sequence IntroducerStarts most of the useful sequences, terminated by a byte in the range 0x40 through 0x7E.
ESC \0x9CSTString TerminatorTerminates strings in other controls.
ESC ]0x9DOSCOperating System CommandStarts a control string for the operating system to use, terminated by ST.
ESC X0x98SOSStart of StringTakes an argument of a string of text, terminated by ST. The uses for these string control sequences are defined by the application or privacy discipline. These functions are rarely implemented and the arguments are ignored by xterm. Some Kermit clients allow the server to automatically execute Kermit commands on the client by embedding them in APC sequences; this is a potential security risk if the server is untrusted.
ESC ^0x9EPMPrivacy Message
ESC _0x9FAPCApplication Program Command

CSI (Control Sequence Introducer) sequences

For Control Sequence Introducer, or CSI, commands, the ESC [ (written as \e[ or \033[ in several programming and scripting languages ) is followed by any number (including none) of "parameter bytes" in the range 0x30–0x3F (ASCII 0–9:;<=>?), then by any number of "intermediate bytes" in the range 0x20–0x2F (ASCII space and !"#$%&'()*+,-./), then finally by a single "final byte" in the range 0x40–0x7E (ASCII @A–Z[\]^_`a–z{|}~).

All common sequences just use the parameters as a series of semicolon-separated numbers such as 1;2;3. Missing numbers are treated as 0 (1;;3 acts like the middle number is 0, and no parameters at all in ESC[m acts like a 0 reset code). Some sequences (such as CUU) treat 0 as 1 in order to make missing parameters useful.

A subset of arrangements was declared "private" so that terminal manufacturers could insert their own sequences without conflicting with the standard. Sequences containing the parameter bytes <=>? or the final bytes 0x70–0x7E (p–z{|}~) are private.

The behavior of the terminal is undefined in the case where a CSI sequence contains any character outside of the range 0x20–0x7E. These illegal characters are either C0 control characters (the range 0–0x1F), DEL (0x7F), or bytes with the high bit set. Possible responses are to ignore the byte, to process it immediately, and furthermore whether to continue with the CSI sequence, to abort it immediately, or to ignore the rest of it.

Some ANSI control sequences (not an exhaustive list )
CodeAbbrNameEffect
CSI n ACUUCursor UpMoves the cursor n (default 1 ) cells in the given direction. If the cursor is already at the edge of the screen, this has no effect.
CSI n BCUDCursor Down
CSI n CCUFCursor Forward
CSI n DCUBCursor Back
CSI n ECNLCursor Next LineMoves cursor to beginning of the line n (default 1) lines down. (not ANSI.SYS )
CSI n FCPLCursor Previous LineMoves cursor to beginning of the line n (default 1) lines up. (not ANSI.SYS )
CSI n GCHACursor Horizontal AbsoluteMoves the cursor to column n (default 1). (not ANSI.SYS )
CSIn;mHCUPCursor PositionMoves the cursor to row n, column m. The values are 1-based, and default to 1 (top left corner) if omitted. A sequence such as CSI ;5H is a synonym for CSI 1;5H as well as CSI 17;H is the same as CSI 17H and CSI 17;1H
CSI n JEDErase in DisplayClears part of the screen. If n is 0 (or missing), clear from cursor to end of screen. If n is 1, clear from cursor to beginning of the screen. If n is 2, clear entire screen (and moves cursor to upper left on DOS ANSI.SYS ). If n is 3, clear entire screen and delete all lines saved in the scrollback buffer (this feature was added for xterm and is supported by other terminal applications).
CSI n KELErase in LineErases part of the line. If n is 0 (or missing ), clear from cursor to the end of the line. If n is 1, clear from cursor to beginning of the line. If n is 2, clear entire line. Cursor position does not change.
CSI n SSUScroll UpScroll whole page up by n (default 1 ) lines. New lines are added at the bottom. (not ANSI.SYS )
CSI n TSDScroll DownScroll whole page down by n (default 1) lines. New lines are added at the top. (not ANSI.SYS )
CSI n; m fHVPHorizontal Vertical PositionSame as CUP, but counts as a format effector function (like CR or LF ) rather than an editor function (like CUD or CNL ). This can lead to different handling in certain terminal modes.[5]: Annex A 
CSI n mSGRSelect Graphic RenditionSets colors and style of the characters following this code
CSI 5iAUX Port OnEnable aux serial port usually for local serial printer
CSI 4i
AUX Port OffDisable aux serial port usually for local serial printer
CSI 6nDSRDevice Status ReportReports the cursor position (CPR) by transmitting ESC[n;mR, where n is the row and m is the column.
Some popular private sequences
CodeAbbrNameEffect
CSI sSCP, SCOSCSave Current Cursor PositionSaves the cursor position/state in SCO console mode. In vertical split screen mode, instead used to set (as CSI n; n s ) or reset left and right margins.
CSI uRCP, SCORCRestore Saved Cursor PositionRestores the cursor position/state in SCO console mode.
CSI? 25 hDECTCEM
Shows the cursor, from the VT220.
CSI? 25 lDECTCEM
Hides the cursor.
CSI? 1004 h

Enable reporting focus. Reports whenever terminal emulator enters or exits focus as ESC [I and ESC [O, respectively.
CSI? 1004 l

Disable reporting focus.
CSI? 1049 h

Enable alternative screen buffer, from xterm
CSI? 1049 l

Disable alternative screen buffer, from xterm
CSI?2004h

Turn on bracketed paste mode. In bracketed paste mode, text pasted into the terminal will be surrounded by ESC [200~ and ESC [201~; programs running in the terminal should not treat characters bracketed by those sequences as commands (Vim[< https://plaza.rakuten.co.jp/tadashityutyu/diary/202304130000/
>2023年04月13日history---Vim (/vɪm/; a contraction of Vi IMproved ) ], for example, does not treat them as commands ). From xterm
CSI? 2004 l

Turn off bracketed paste mode.

SGR (Select Graphic Rendition) parameters

The control sequence CSI n m, named Select Graphic Rendition (SGR), sets display attributes. Several attributes can be set in the same sequence, separated by semicolons. Each display attribute remains in effect until a following occurrence of SGR resets it. If no codes are given, CSI m is treated as CSI 0 m (reset / normal ).

nNameNote
0Reset or normalAll attributes off
1Bold or increased intensityAs with faint, the color change is a PC (SCO / CGA ) invention.
2Faint, decreased intensity, or dimMay be implemented as a light font weight like bold.
3ItalicNot widely supported. Sometimes treated as inverse or blink.
4UnderlineStyle extensions exist for Kitty, VTE, mintty and iTerm2.
5Slow blinkSets blinking to less than 150 times per minute
6Rapid blinkMS-DOS ANSI.SYS, 150+ per minute; not widely supported
7Reverse video or invertSwap foreground and background colors; inconsistent emulation
8Conceal or hideNot widely supported.
9Crossed-out, or strikeCharacters legible but marked as if for deletion. Not supported in Terminal.app
10Primary (default) font
11–19Alternative fontSelect alternative font n − 10
20Fraktur (Gothic)Rarely supported
21Doubly underlined; or: not boldDouble-underline per ECMA-48, but instead disables bold intensity on several terminals, including in the Linux kernel's console before version 4.17.
22Normal intensityNeither bold nor faint; color changes where intensity is implemented as such.
23Neither italic, nor blackletter
24Not underlinedNeither singly nor doubly underlined
25Not blinkingTurn blinking off
26Proportional spacingITU T.61 and T.416, not known to be used on terminals
27Not reversed
28RevealNot concealed
29Not crossed out
30–37Set foreground color
38Set foreground colorNext arguments are 5;n or 2;r;g;b
39Default foreground colorImplementation defined (according to standard )
40–47Set background color
48Set background colorNext arguments are 5;n or 2;r;g;b
49Default background colorImplementation defined (according to standard )
50Disable proportional spacingT.61 and T.416
51FramedImplemented as "emoji variation selector" in mintty.
52Encircled
53OverlinedNot supported in Terminal.app
54Neither framed nor encircled
55Not overlined
58Set underline colorNot in standard; implemented in Kitty, VTE, mintty, and iTerm2. Next arguments are 5;n or 2;r;g;b.
59Default underline colorNot in standard; implemented in Kitty, VTE, mintty, and iTerm2.
60Ideogram underline or right side lineRarely supported
61Ideogram double underline, or double line on the right side
62Ideogram overline or left side line
63Ideogram double overline, or double line on the left side
64Ideogram stress marking
65No ideogram attributesReset the effects of all of 6064
73SuperscriptImplemented only in mintty
74Subscript
75Neither superscript nor subscript
90–97Set bright foreground colorNot in standard; originally implemented by aixterm
100–107Set bright background color

Colors

3-bit and 4-bit

The original specification only had 8 colors, and just gave them names. The SGR parameters 30–37 selected the foreground color, while 40–47 selected the background. Quite a few terminals implemented "bold" (SGR code 1) as a brighter color rather than a different font, thus providing 8 additional foreground colors. Usually you could not get these as background colors, though sometimes inverse video (SGR code 7) would allow that. Examples: to get black letters on white background use ESC[30;47m, to get red use ESC[31m, to get bright red use ESC[1;31m. To reset colors to their defaults, use ESC[39;49m (not supported on some terminals ), or reset all attributes with ESC[0m. Later terminals added the ability to directly specify the "bright" colors with 90–97 and 100–107.

When hardware started using 8-bit digital-to-analog converters (DACs) several pieces of software assigned 24-bit color numbers to these names. The chart below shows the default values sent to the DAC for some common hardware and software; in most cases they are configurable.

FGBGNameVGA[b]WindowsXP
Console
[c]
Windows
PowerShell6
[d]
Visual Studio Code[e]Windows10
Console
[f]
Terminal.appPuTTYmIRCxtermUbuntu[g]Eclipse Terminal
3040Black0, 0, 012, 12, 120, 0, 01, 1, 10, 0, 0
3141Red170, 0, 0128, 0, 0205, 49, 49197, 15, 31194, 54, 33187, 0, 0127, 0, 0205, 0, 0222, 56, 43205, 0, 0
3242Green0, 170, 00, 128, 013, 188, 12119, 161, 1437, 188, 360, 187, 00, 147, 00, 205, 057, 181, 740, 205, 0
3343Yellow170, 85, 0[h]128, 128, 0238, 237, 240229, 229, 16193, 156, 0173, 173, 39187, 187, 0252, 127, 0205, 205, 0255, 199, 6205, 205, 0
3444Blue0, 0, 1700, 0, 12836, 114, 2000, 55, 21873, 46, 2250, 0, 1870, 0, 1270, 0, 238[46]0, 111, 1840, 0, 238
3545Magenta170, 0, 170128, 0, 1281, 36, 86188, 63, 188136, 23, 152211, 56, 211187, 0, 187156, 0, 156205, 0, 205118, 38, 113205, 0, 205
3646Cyan0, 170, 1700, 128, 12817, 168, 20558, 150, 22151, 187, 2000, 187, 1870, 147, 1470, 205, 20544, 181, 233205, 0, 205
3747White170, 170, 170192, 192, 192229, 229, 229204, 204, 204203, 204, 205187, 187, 187210, 210, 210229, 229, 229204, 204, 204229, 229, 229
90100Bright Black (Gray)85, 85, 85128, 128, 128102, 102, 102118, 118, 118129, 131, 13185, 85, 85127, 127, 127127, 127, 127128, 128, 1280, 0, 0
91101Bright Red255, 85, 85255, 0, 0241, 76, 76231, 72, 86252, 57, 31255, 85, 85255, 0, 0
92102Bright Green85, 255, 850, 255, 035, 209, 13922, 198, 1249, 231, 3485, 255, 850, 252, 00, 255, 0
93103Bright Yellow255, 255, 85255, 255, 0245, 245, 67249, 241, 165234, 236, 35255, 255, 85255, 255, 0
94104Bright Blue85, 85, 2550, 0, 25559, 142, 23459, 120, 25588, 51, 25585, 85, 2550, 0, 25292, 92, 255[47]0, 0, 25592, 92, 255
95105Bright Magenta255, 85, 255255, 0, 255214, 112, 214180, 0, 158249, 53, 248255, 85, 255255, 0, 255
96106Bright Cyan85, 255, 2550, 255, 25541, 184, 21997, 214, 21420, 240, 24085, 255, 2550, 255, 255
97107Bright White255, 255, 255229, 229, 229242, 242, 242233, 235, 235255, 255, 255
8-bit

As 256-color lookup tables became common on graphic cards, escape sequences were added to select from a pre-defined set of 256 colors:

ESC[38;5;⟨n⟩m Select foreground color where n is a number from the table belowESC[48;5;⟨n⟩m Select background color 0- 7: standard colors (as in ESC [ 30–37 m) 8- 15: high intensity colors (as in ESC [ 90–97 m) 16-231: 6 × 6 × 6 cube (216 colors): 16 + 36 × r + 6 × g + b (0 ≤ r, g, b ≤ 5)232-255: grayscale from dark to light in 24 steps

The ITU's T.416 Information technology - Open Document Architecture (ODA) and interchange format: Character content architectures uses ":" as separator characters instead:

ESC[38:5:⟨n⟩m Select foreground color where n is a number from the table belowESC[48:5:⟨n⟩m Select background color

256-color mode — foreground: ESC[38;5;#m background: ESC[48;5;#m
Standard colorsHigh-intensity colors
01234567
89101112131415
216 colors
161718192021222324252627282930313233343536373839404142434445464748495051
525354555657585960616263646566676869707172737475767778798081828384858687
888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
Grayscale colors
232233234235236237238239240241242243244245246247248249250251252253254255

There has also been a similar but incompatible 88-color encoding using the same escape sequence, seen in rxvt and xterm-88color. Not much is known about the scheme besides the color codes. It uses a 4×4×4 color cube.

24-bit

As "true color" graphic cards with 16 to 24 bits of color became common, applications began to support 24-bit colors. Terminal emulators supporting setting 24-bit foreground and background colors with escape sequences include Xterm, KDE's Konsole, and iTerm, as well as all libvte based terminals, including GNOME Terminal.

ESC[38;2;⟨r⟩;⟨g⟩;⟨b⟩ m Select RGB foreground colorESC[48;2;⟨r⟩;⟨g⟩;⟨b⟩ m Select RGB background color

The syntax is likely based on the ITU's T.416 Open Document Architecture (ODA) and interchange format: Character content architectures, which was adopted as ISO/IEC 8613-6 but ended up as a commercial failure. The ODA version is more elaborate and thus incompatible:

  • The parameters after the '2' (r, g, and b) are optional and can be left empty.
  • Semicolons are replaced by colons, as above.
  • There is a leading "colorspace ID ". The definition of the colorspace ID is not included in that document so it may be blank to represent the unspecified default.
  • In addition to the '2' value after 48 to specify a Red-Green-Blue format (and the '5' above for a 0-255 indexed color), there are alternatives of '0' for implementation-defined and '1' for transparent - neither of which have any further parameters; '3' specifies colors using a Cyan-Magenta-Yellow scheme, and '4' for a Cyan-Magenta-Yellow-Black one, the latter using the position marked as "unused" for the Black component:
ESC[38:2:⟨Color-Space-ID⟩:⟨r⟩:⟨g⟩:⟨b⟩:⟨unused⟩:CS tolerance:⟨Color-Space associated with tolerance: 0 for "CIELUV"; 1 for "CIELAB"⟩ m Select RGB foreground colorESC[48:2:⟨Color-Space-ID⟩:⟨r⟩:⟨g⟩:⟨b⟩:⟨unused⟩:⟨CS tolerance⟩:⟨Color-Space associated with tolerance: 0 for "CIELUV"; 1 for "CIELAB"⟩ m Select RGB background color

The ITU-RGB variation is supported by xterm, with the colorspace ID and tolerance parameters ignored. The simpler scheme using semicolons is initially found in Konsole.

Unix environment variables relating to color support

Before termcap and terminfo could indicate support for colors, the S-Lang library used $COLORTERM to indicate whether a terminal emulator could use colors at all (later reinterpreted as 256-colors ) and whether it supports 24-bit color. This system, although poorly documented, became widespread enough for Fedora and RHEL to consider using it as a simpler and more universal detection mechanism compared to querying the now-updated libraries. However, gnome-terminal 3.14 dropped this variable as its authors considered it incorrect and no longer necessary.

Some terminal emulators (urxvt, konsole) set $COLORFGBG to report the color scheme of the terminal (mainly light vs. dark background). This behavior originated in S-Lang and is used by vim. Again, gnome-terminal refuses to add this behavior, as the more "proper" xterm OSC 4/10/11 sequences already exist.

OSC (Operating System Command) sequences

Most Operating System Command sequences were defined by Xterm, but many are also supported by other terminal emulators. For historical reasons, Xterm can end the command with BEL[< https://ja.wikipedia.org/wiki/%E3%83%99%E3%83%AB%E6%96%87%E5%AD%97 >/wiki/bell character[BEL ]ベル文字(制御文字< https://ja.wikipedia.org/wiki/%E5%88%B6%E5%BE%A1%E6%96%87%E5%AD%97 > の一種,, ) ] as well as the standard ST. For example, Xterm allows the window title to be set by ESC ]0;this is the window title BEL

The Linux console uses ESC ] P n rr gg bb to change the palette, which, if hard-coded into an application, may hang other terminals. However, appending ST will be ignored by Linux and form a proper, ignorable sequence for other terminals.

Fs Escape sequences

If the ESC is followed by a byte in the range 0x60—0x7E, the escape sequence is of type Fs. This type is used for control functions individually registered with the ISO-IR registry and, consequently, available even in contexts where a different C1 control code set is used. Specifically, they correspond to single control functions approved by ISO/IEC JTC 1/SC 2 and standardized by ISO or an ISO-recognised body. Some of these are specified in ECMA-35 (ISO 2022 / ANSI X3.41 ), others in ECMA-48 (ISO 6429 / ANSI X3.64). ECMA-48 refers to these as "independent control functions ".

Some type Fs (independent function ) ANSI escape sequences recognised by terminals (not an exhaustive list )

AbbrNameEffect
ESC cRISReset to Initial StateTriggers a full reset of the terminal to its original state. This may include (if applicable ): reset graphic rendition, clear tabulation stops, reset to default font, and more.

Fp Escape sequences

If the ESC is followed by a byte in the range 0x30—0x3F, the escape sequence is of type Fp, which is set apart for up to sixteen private-use control functions.

Some type Fp (private-use ) escape sequences recognised by the VT100, its successors, and/or terminal emulators such as xterm

AbbrNameEffect
ESC 7DECSCDEC Save CursorSaves the cursor position, encoding shift state and formatting attributes.
ESC 8DECRCDEC Restore CursorRestores the cursor position, encoding shift state and formatting attributes from the previous DECSC if any, otherwise resets these all to their defaults.

nF Escape sequences

If the ESC is followed by a byte in the range 0x20—0x2F, the escape sequence is of type nF. Said byte is followed by any number of additional bytes in this range, and then a byte in the range 0x30-0x7E. These escape sequences are further subcategorised by the low four bits of the first byte, e.g. "type 2F " for sequences where the first byte is 0x22; and by whether the final byte is in the range 0x30—0x3F indicating private use (e.g. "type 2Fp") or not (e.g. "type 2Ft " ).

Escape sequences of this type are mostly used for ANSI/ISO code-switching mechanisms such as those used by ISO-2022-JP, except for type 3F sequences (those where the first intermediate byte is 0x23), which are used for individual control functions. Type 3Ft sequences are reserved for additional ISO-IR registered individual control functions, while type 3Fp sequences are available for private-use control functions. Unlike type Fs sequences, no type 3Ft sequences are presently registered.

Some type 0Ft (announcement) ANSI escape sequences recognised by terminals

AbbrNameEffect
ESC SP F
  • ACS6
  • S7C1T
  • Announce Code Structure 6
  • Send 7-bit C1 Control Character to the Host
Defined in ECMA-35 (ANSI X3.41 / ISO 2022). Makes the function keys send ESC + letter instead of 8-bit C1 codes.
ESC SP G
  • ACS7
  • S8C1T
  • Announce Code Structure 7
  • Send 8-bit C1 Control Character to the Host
Defined in ECMA-35. Makes the function keys send 8-bit C1 codes.
Some type 3Fp (private-use) escape sequences recognised by theVT100,< https://ja.wikipedia.org/wiki/VT100 >{HP vs, IBMの構図?? ?,, } its successors, and/or terminal emulators such as xterm

AbbrNameEffect
ESC # 3DECDHLDEC Double-Height Letters, Top HalfMakes the current line use characters twice as tall. This code is for the top half.
ESC # 4DECDHLDEC Double-Height Letters, Bottom HalfMakes the current line use characters twice as tall. This code is for the bottom half.
ESC # 5DECSWLDEC Single-Width LineMakes the current line use single-width characters, per the default behaviour.
ESC # 6DECDWLDEC Double-Width LineMakes the current line use double-width characters, discarding any characters in the second half of the line.

Examples

CSI 2 J — This clears the screen and, on some devices, locates the cursor to the y,x position 1,1 (upper left corner).

CSI 32 m — This makes text green. The green may be a dark, dull green, so you may wish to enable Bold with the sequence CSI 1 m which would make it bright green, or combined as CSI 32; 1 m. Some implementations use the Bold state to make the character Bright.

CSI 0; 6 8; "DIR"; 13 p — This reassigns the key F10 to send to the keyboard buffer the string "DIR" and ENTER, which in the DOS command line would display the contents of the current directory. (MS-DOS ANSI.SYS only) This was sometimes used for ANSI bombs. .< https://www.techopedia.com/definition/25349/ansi-bomb >人のもの[patchリリースされたソフトで発見されたセキュリティ上の脆弱性に対する修正モジュール - パッチ ] を利用したためのmalfunction機能不全??, < https://www.hotfix.jp/archives/word/2006/word06-27.html >[HotFix Report ] セキュリティ用語-ANSI爆弾(ANSI bomb),〈動作の不具合を起こすウイルスのようになる可能性も?・?・ 2023年3月 : shinichiwanko2000のblog (1) . This is a private-use code (as indicated by the letter p), using a non-standard extension to include a string-valued parameter. Following the letter of the standard would consider the sequence to end at the letter D.

CSI s — This saves the cursor position. Using the sequence CSI u will restore it to the position. Say the current cursor position is 7(y) and 10(x). The sequence CSI s will save those two numbers. Now you can move to a different cursor position, such as 20(y) and 3(x), using the sequence CSI 20; 3 H or CSI 20; 3 f. Now if you use the sequence CSI u the cursor position will return to 7(y) and 10(x). Some terminals require the DEC sequences ESC 7 / ESC 8 instead which is more widely supported.

In shell scripting

ANSI escape codes are often used in UNIX and UNIX-like terminals to provide syntax highlighting. For example, on compatible terminals, the following list ふつう?、dosコマンドで・dirと入力すると file listが表示される!!, そのこと!・?・ command color-codes file and directory names by type.

ls --color

Users can employ escape codes in their scripts by including them as part of standard output or standard error. For example, the following GNU sed command embellishes the output of the make command by displaying lines containing words starting with "WARN" in reverse video and words starting with "ERR" in bright yellow on a dark red background (letter case is ignored ). The representations of the codes are highlighted.

make 2>&1 | sed -e 's/.*\bWARN.*/\x1b[7m&\x1b[0m/i' -e 's/.*\bERR.*/\x1b[93;41m&\x1b[0m/i'

The following Bash function flashes the terminal (by alternately sending reverse and normal video mode codes) until the user presses a key.

flasher () { while true; do printf \\e[?5h; sleep 0.1; printf \\e[?5l; read -s -n1 -t1 && break; done; }

This can be used to alert a programmer when a lengthy command terminates, such as with make; flasher.

printf \\033c

This will reset the console, similar to the command reset on modern Linux systems; however it should work even on older Linux systems and on other (non-Linux) UNIX variants.

In C

2023年3月 : shinichiwanko2000のblog (2)

#include <stdio.h>int main(void){ int i, j, n; for (i = 0; i < 11; i++) { for (j = 0; j < 10; j++) { n = 10 * i + j; if (n > 108) break; printf("\033[%dm %3d\033[m", n, n); } printf("\n"); } return 0;}

Terminal input sequences

2023年3月 : shinichiwanko2000のblog (3)

This section does not cite any sources. Please help improve this section by adding citations to reliable sources. Unsourced material may be challenged and removed. (September 2019) (Learn how and when to remove this template message )

Pressing special keys on the keyboard, as well as outputting many xterm CSI, DCS, or OSC sequences, often produces a CSI, DCS, or OSC sequence, sent from the terminal to the computer as though the user typed it.

When typing input on a terminal keypresses outside the normal main alphanumeric keyboard area can be sent to the host as ANSI sequences. For keys that have an equivalent output function, such as the cursor keys, these often mirror the output sequences. However, for most keypresses there isn't an equivalent output sequence to use.

There are several encoding schemes, and unfortunately most terminals mix sequences from different schemes, so host software has to be able to deal with input sequences using any scheme. To complicate the matter, the VT terminals themselves have two schemes of input, normal mode and application mode that can be switched by the application.

(draft section)

<char> -> char<esc> <nochar> -> esc<esc> <esc> -> esc<esc> <char> -> Alt-keypress or keycode sequence<esc> '[' <nochar> -> Alt-[<esc> '[' (<modifier>) <char> -> keycode sequence, <modifier> is a decimal number and defaults to 1 (xterm)<esc> '[' (<keycode>) (';'<modifier>) '~' -> keycode sequence, <keycode> and <modifier> are decimal numbers and default to 1 (vt)

If the terminating character is '~', the first number must be present and is akeycode number, the second number is an optional modifier value. If the terminatingcharacter is a letter, the letter is the keycode value, and the optional number isthe modifier value.

The modifier value defaults to 1, and after subtracting 1 is a bitmap of modifierkeys being pressed: Meta+Ctrl+Alt+⇧ Shift. So, for example, <esc>[4;2~ is⇧ Shift+End, <esc>[20~ is function key F9, <esc>[5C is Ctrl+.

In other words, the modifier is the sum of the following numbers:

Key pressedNumberComment

1always added, the rest are optional
Shift1
(Left) Alt2
Control4
Meta8
vt sequences:<esc>[1~ - Home <esc>[16~ - <esc>[31~ - F17<esc>[2~ - Insert <esc>[17~ - F6 <esc>[32~ - F18<esc>[3~ - Delete <esc>[18~ - F7 <esc>[33~ - F19<esc>[4~ - End <esc>[19~ - F8 <esc>[34~ - F20<esc>[5~ - PgUp <esc>[20~ - F9 <esc>[35~ - <esc>[6~ - PgDn <esc>[21~ - F10 <esc>[7~ - Home <esc>[22~ - <esc>[8~ - End <esc>[23~ - F11 <esc>[9~ - <esc>[24~ - F12 <esc>[10~ - F0 <esc>[25~ - F13 <esc>[11~ - F1 <esc>[26~ - F14 <esc>[12~ - F2 <esc>[27~ - <esc>[13~ - F3 <esc>[28~ - F15 <esc>[14~ - F4 <esc>[29~ - F16 <esc>[15~ - F5 <esc>[30~ -xterm sequences:<esc>[A - Up <esc>[K - <esc>[U -<esc>[B - Down <esc>[L - <esc>[V -<esc>[C - Right <esc>[M - <esc>[W -<esc>[D - Left <esc>[N - <esc>[X -<esc>[E - <esc>[O - <esc>[Y -<esc>[F - End <esc>[1P - F1 <esc>[Z -<esc>[G - Keypad 5 <esc>[1Q - F2 <esc>[H - Home <esc>[1R - F3 <esc>[I - <esc>[1S - F4 <esc>[J - <esc>[T - 

<esc>[A to <esc>[D are the same as the ANSI output sequences. The <modifier> is normally omitted if no modifier keys are pressed, but most implementations always emit the <modifier> for F1F4. (draft section)

Xterm has a comprehensive documentation page on the various function-key and mouse input sequence schemes from DEC's VT terminals and various other terminals it emulates. Thomas Dickey has added a lot of support to it over time; he also maintains a list of default keys used by other terminal emulators for comparison.

  • On the Linux console, certain function keys generate sequences of the form CSI [ char. The CSI sequence should terminate on the [.
  • Old versions of Terminator generate SS3 1; modifiers char when F1F4 are pressed with modifiers. The faulty behavior was copied from GNOME Terminal.
  • xterm replies CSI row; column R if asked for cursor position and CSI 1; modifiers R if the F3 key is pressed with modifiers, which collide in the case of row == 1. This can be avoided by using the ? private modifier as CSI? 6 n, which will be reflected in the response as CSI? row; column R.
  • many terminals prepend ESC to any character that is typed with the alt key down. This creates ambiguity for uppercase letters and symbols @[\]^_, which would form C1 codes.
  • Konsole generates SS3 modifiers char when F1F4 are pressed with modifiers.

< https://en.wikipedia.org/wiki/ANSI_escape_code >
{コンピュータ内部のこと!?, ・・ さまざまな constrain●constraint●lock-in制約がある?・?・?,,(この「四角い文字化け?? 」 ミタイ♪になるのは?、胴元ドウモトが儲モウけているにもかかわらず??バグを改修しないコトによるモノなの,kana??2023年3月 : shinichiwanko2000のblog (4) ?? ) }

2023年3月 : shinichiwanko2000のblog (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Ms. Lucile Johns

Last Updated:

Views: 6415

Rating: 4 / 5 (41 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Ms. Lucile Johns

Birthday: 1999-11-16

Address: Suite 237 56046 Walsh Coves, West Enid, VT 46557

Phone: +59115435987187

Job: Education Supervisor

Hobby: Genealogy, Stone skipping, Skydiving, Nordic skating, Couponing, Coloring, Gardening

Introduction: My name is Ms. Lucile Johns, I am a successful, friendly, friendly, homely, adventurous, handsome, delightful person who loves writing and wants to share my knowledge and understanding with you.