\n
\r
\t
\b
\f
\\
\(
\)
\ddd
In addition to these basic codes, a backslash just before a newline allows you to break a string across two lines without inserting a newline into the string. That is, the string:
(This is a \ string \ that has no \ newlines)
is equivalent to the string:(This is a string that has no newlines)
.