The table below lists the supported escape characters.
Escape Character |
Description |
---|---|
\uxxxx |
Unicode character |
\' |
single quote |
\0 |
binary zero |
\n |
line feed |
\t |
tab character |
\r |
carriage return |
\b |
back space |
\f |
form feed |
\\ |
back slash |
Escape the escape character
You can Escape the escape character, as shown in the following expression:
'dir=\\v56\\install';
yields:
dir=\v56\install