module

Ansi::C0

C0 control characters.

These range from (0x00-0x1F) as defined in ISO 646 (ASCII). See: https://en.wikipedia.org/wiki/C0_and_C1_control_codes

Constants

ACK = 6_u8

ACK is the acknowledge character (Caret: ^F).

BEL = 7_u8

BEL is the bell character (Caret: ^G, Char: \a).

BS = 8_u8

BS is the backspace character (Caret: ^H, Char: \b).

CAN = 24_u8

CAN is the cancel character (Caret: ^X).

CR = 13_u8

CR is the carriage return character (Caret: ^M, Char: \r).

DC1 = 17_u8

DC1 is the device control 1 character (Caret: ^Q).

DC2 = 18_u8

DC2 is the device control 2 character (Caret: ^R).

DC3 = 19_u8

DC3 is the device control 3 character (Caret: ^S).

DC4 = 20_u8

DC4 is the device control 4 character (Caret: ^T).

DLE = 16_u8

DLE is the data link escape character (Caret: ^P).

EM = 25_u8

EM is the end of medium character (Caret: ^Y).

ENQ = 5_u8

ENQ is the enquiry character (Caret: ^E).

EOT = 4_u8

EOT is the end of transmission character (Caret: ^D).

ESC = 27_u8

ESC is the escape character (Caret: ^[, Char: \e).

ETB = 23_u8

ETB is the end of transmission block character (Caret: ^W).

ETX = 3_u8

ETX is the end of text character (Caret: ^C).

FF = 12_u8

FF is the form feed character (Caret: ^L, Char: \f).

FS = 28_u8

FS is the file separator character (Caret: ^).

GS = 29_u8

GS is the group separator character (Caret: ^]).

HT = 9_u8

HT is the horizontal tab character (Caret: ^I, Char: \t).

LF = 10_u8

LF is the line feed character (Caret: ^J, Char: \n).

LS0 = SI

LS0 is the locking shift 0 character. This is an alias for [SI].

LS1 = SO

LS1 is the locking shift 1 character. This is an alias for [SO].

NAK = 21_u8

NAK is the negative acknowledge character (Caret: ^U).

NUL = 0_u8

NUL is the null character (Caret: ^@, Char: \0).

RS = 30_u8

RS is the record separator character (Caret: ^^).

SI = 15_u8

SI is the shift in character (Caret: ^O).

SO = 14_u8

SO is the shift out character (Caret: ^N).

SOH = 1_u8

SOH is the start of heading character (Caret: ^A).

STX = 2_u8

STX is the start of text character (Caret: ^B).

SUB = 26_u8

SUB is the substitute character (Caret: ^Z).

SYN = 22_u8

SYN is the synchronous idle character (Caret: ^V).

US = 31_u8

US is the unit separator character (Caret: ^_).

VT = 11_u8

VT is the vertical tab character (Caret: ^K, Char: \v).