\0 |
The NUL character (\u0000). |
\b |
Backspace (\u0008). |
\t |
Horizontal tab (\u0009). |
\n |
Newline (\u000A). |
\v |
Vertical tab (\u000B). |
\f |
Form feed (\u000C). |
\r |
Carriage return (\u000D). |
\" |
Double quote (\u0022). |
\' |
Apostrophe or single quote (\u0027). |
\\ |
Backslash (\u005C). |
\xXX |
The Latin-1 character specified by the two hexadecimal digits XX. |
\uXXXX |
The Unicode character specified by the four hexadecimal digitsXXXX. |
\XXX |
The Latin-1 character specified by the octal digits XXX, between 1 and 377. Not supported by ECMAScript v3; do not use this escape sequence. |