Perl      Escape Sequences
\aBeep
\bBackspace
\c"Control" caracter. \cD = CTRL-D
\eEscape
\fForm feed
\lMake the next letter lowercase
\nNew line, return.
\rCarriage return.
\tTab.
\uMake the next letter uppercase
\xEnables hex numbers
\vVertical tab
\\Print backslash
\"Print double quotes
\Escape next character if known otherwise print. Also allows octal numbers.
\LMake all letters lowercase until the \E
\UMake all letters uppercase until the \E
\QAdd a backslash-quote to all the nonalphanumerics until the \E
\ETerminates the effects of \L, \U, or \Q
\007Any octal ASCII value
\x7fAny hexadecimal value
\cxControl-x