Page 473 - Introduction to Programming with Java: A Problem Solving Approach
P. 473
11.3 char Type and the ASCII Character Set 439
numeric
value character
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
null
start of heading
start of text end of text end of transmission enquiry
acknowledge audible bell backspace horizontal tab line feed vertical tab form feed carriage return shift out shift in
data link escape
negative acknowledge synchronous idle end transmission block
cancel end of medium substitute
escape
file separator group separator
record separator unit separator
device control 1 device control 2 device control 3 device control 4
Apa
numeric char- value acter
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
`
j
c
d
e
f
g
h
i
b
a
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
{
|
}
~
delete
Figure 11.4
numeric char- value acter
32
33 65
space 64 @ !A
34 66
"B
35 67
#C
36 68
$D
37 69
%E
38 70
&F
39 71
'G
40 72
(H
41 73
)I
42 74
*J
43 75
+K
44 76
,L
45 77
-M
46 78
.N
47 79
/O
48 80
0P
go4P9DFE1nhan8c1erQ 50 82
2R
51 83
3S
52 84
4T
53 85
5U
54 86
6V
55 87
7W
56 88
8X
57 89
9Y
58 90
:Z
59 91
;[
60 92
<\
61 93
62 63
=]
94
>^
?
ASCII Table
These characters and their code values are the same as the first 128 characters in Unicode, which is discussed in Section 11.13.
numeric char- value acter
95
_