Escape Sequences - Reverse Flashcards
2
Q
Backslash ()
A
\
3
Q
Single quote (‘)
A
'
4
Q
Double quote (“)
A
"
5
Q
ASCII Bell (BEL)
A
\a
6
Q
ASCII Backspace (BS)
A
\b
7
Q
ASCII Formfeed (FF)
A
\f
8
Q
ASCII Linefeed (LF)
A
\n
9
Q
Character named name in the Unicode database (Unicode only)
A
\N{name}
10
Q
Carriage Return (CR)
A
\r ASCII
11
Q
Horizontal Tab (TAB)
A
\t ASCII
12
Q
Character with 16-bit hex value xxxx (Unicode only)
A
\uxxxx
13
Q
Character with 32-bit hex value xxxxxxxx (Unicode only)
A
\Uxxxxxxxx
14
Q
ASCII Vertical Tab (VT)
A
\v
15
Q
Character with octal value ooo
A
\ooo
16
Q
Character with hex value hh
A
\xhh