Escapes Flashcards
0
Q
'
A
Single quote (‘)
1
Q
\
A
Backslash()
2
Q
"
A
Double quote (“)
3
Q
\a
A
ASCII bell (BEL)
4
Q
\b
A
ASCII backspace(BS)
5
Q
\f
A
ASCII formfeed(FF)
6
Q
\n
A
ASCII linefeed (LF)
7
Q
\N{name}
A
Character named name in the Unicode database (Unicode only)
8
Q
\r ASCII
A
Carriage return
9
Q
\t ASCII
A
Horizontal tab (TAB)
10
Q
\uxxxx
A
Character with 16 bit hex value xxxx (Unicode only)
11
Q
\uxxxxxxxx
A
Character with 32 bit hex value xxxxxxxx (Unicode only)
12
Q
\v
A
ASCII vertical tab (VT)
13
Q
\ooo
A
Character with octal value ooo
14
Q
\xhh
A
Character with hex value HHS