Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <map> | |
| #include <cctype> | |
| #include <fstream> | |
| #include <sstream> | |
| #include <cstring> | |
| #include <cstdlib> |