Escape Sequences
 
Allowed escape sequences in string literals.

Description

The accepted escape sequences are:
\abeep
\bbackspace
\fformfeed
\l or \nnewline
\rcarriage return
\ttab
\unnnnunicode char in hex
\vvertical tab
\nnnascii char in decimal
\&hnnascii char in hex
\&onnnascii char in octal
\&bnnnnnnnnascii char in binary
\\backslash
\(double quote)double quote
\'single quote


See also