Using Control Characters
The backslash (\) is a special control character, also called the escape character. The
character after the backslash has a special meaning, as shown in the table.
|
Character
|
Meaning
|
|
\0
|
Null
|
|
\b
|
Backspace
|
|
\t
|
Tab
|
|
\r
|
Carriage return
|
|
\n
|
New line
|
|
\v
|
Vertical tab
|
|
\f
|
Form feed
|
|
\u, \x
|
A single Unicode character when followed by a four-digit
hexadecimal number
|
|
\"
|
Double quote
|
|
\'
|
Single quote
|
|
\\
|
Backslash
|
|