\
Backslash()
'
Single-Quote(‘)
"
Double-Quote(“)
\a
ASCII bell (Bel)
\b
ASCII backspace (BS)
\f
ASCII formfeed (FF)
\n
ASCII linefeed (LF)
\N{name}
Character named name in Unicode database (Unicode)
\r
Carriage Return (CR)
\t
Horizontal Tab (TAB)
\uxxxx
Character with 16-bit hex value (“u” string only)
\Uxxxxxxxx
Character with 32-bit hex value(“u” string only)
\v
ASCII vertical tab (VT)
\ooo
Character with octal value ooo
\xhh
Character with hex value hh