Categories
Tags
Algorithm ASCII Blog Building Blogging C Lang C++ Calculas CMake Coding Combination Theory Computer Architecture CS CS100 CS101 CS110 CS50X Customization Data Science DATA100 Demo Discrerte Math Docker Economics Example Fonts Fuwari HEXO Jottings LaTeX Linux LLM Translation Markdown Marp Methodology Neovim Number Theory Proxy Reading Revised Translation Slides STU Table Unfinished Video WSL
76 words
1 minutes
Escape Chars Table
The full table of escape characters.
Escape Character | Description | Unicode Value |
---|---|---|
\\ | Backslash | \u005C |
\' | Single quote | \u0027 |
\" | Double quote | \u0022 |
\? | Question mark | \u003F |
\a | Alert (bell) | \u0007 |
\b | Backspace | \u0008 |
\f | Formfeed | \u000C |
\n | Newline (line feed) | \u000A |
\r | Carriage return | \u000D |
\t | Horizontal tab | \u0009 |
\v | Vertical tab | \u000B |
\0 | Null character | \u0000 |
\ooo | Octal number of one to three digits (where ooo is the octal number) | |
\xhh | Hexadecimal number of one or more digits (where hh is the hexadecimal number) | |
\uhhhh | Unicode character (16-bit) in hexadecimal notation (where hhhh is the hex number) | |
\Uhhhhhhhh | Unicode character (32-bit) in hexadecimal notation (where hhhhhhhh is the hex number) | |
\N{name} | Unicode character named name in the Unicode database (not supported in all languages) |
Escape Chars Table
https://zivmax.top/posts/refs/escape-chars-table/