What does Backslash()?
\
What does Single-quote(‘)?
\’
What does Double-quote(“)?
\”
What does ASCII bell(BEL)?
\a
What does ASCII backspace(BS)?
\b
What does ASCII formfeed(FF)?
\f
What does ASCII linefeed(LF)?
\n
What does Character named name in the Unicode database(Unicode only)?
\N{name}
What does Carriage return(CR)?
\r
What does Horizontal tab(TAB)?
\t
What does Character with 16-bit hex value xxxx?
\uxxxx
What does Character with 32-bit hex value xxxxxxxx?
\Uxxxxxxxx
What does ASCII vertical tab(VT)?
\v
What does Character with octal value ooo?
\ooo
What does Character with hex value hh?
\xhh