AnsiChars
AnsiChars refers to characters that can be displayed using the ANSI escape code standard. This standard, originating from the American National Standards Institute, defines a set of control sequences that can be embedded within text to control formatting, color, and cursor positioning on a terminal or console. These escape sequences are typically composed of an escape character (ASCII 27, often represented as `\033` or `\x1b`) followed by a left square bracket `[` and then a series of parameters and a command character.
When a terminal interprets an AnsiChar sequence, it executes the specified command rather than displaying it
The use of AnsiChars is common in command-line applications, scripting, and early computer graphics. Many modern