Escape Sequence |
Description | Code | Output |
---|---|---|---|
\\ | Prints a backslash character. |
|
\ |
\' | Prints a single quote mark. |
|
' |
\" | Prints a double quote mark. |
|
" |
\b | Backspace - removes the previous character in the string. |
|
Tes String |
\f | Formfeed (FF) |
|
Test String |
\n | Linefeed (LF) |
|
Test String |
\N{name} | Prints a character from the Unicode Character Database. You can find an index of the available emoji characters at here. |
|
😀 |
\t | Horizontal tab (TAB). Inserts a tab at the point of the \t sequence. |
|
ABCD EFGH |