Here is a table listing the special escape sequences.
| Escape |
represents |
| \b |
BackSpace |
| \f |
Form feed |
| \n |
NewLine |
| \r |
Carriage Return |
| \t |
Tab |
| \' |
Single quote |
| \" |
double quotes |
| \\ |
single backslash |
| \ddd |
character with Latin-1 encoding specified
by three octal digits ddd |
| \xdd |
character with Latin-1 encoding specified
by two hexadecimal digits dd |
| \udddd |
character with unicode encoding specified
by four hexadecimal digits dddd |
| \n |
n , where n is any character other than
the ones above. |