标题: ASCII 十进制表格
QUOTE:
直观, 这个表格很好.
shawl.qiu 2006-5-22
ASCII Ten-Finger Table
0
1
2
3
4
5
6
7
8
9
0
nul
soh
stx
etx
eot
enq
ack
bell
bksp
hTab
10
lineFeed
vTab
formFeed
cr
shOut
shIn
dle
dc1
dc2
dc3
20
dc4
negAck
syn
etb
cancel
eom
subs
esc
fileSep
GrpSep
30
recrdSep
unitSep
space
!
"
#
$
%
&
'
40
(
)
*
+
,
-
.
/
0
1
50
2
3
4
5
6
7
8
9
:
;
60
<
=
>
?
@
A
B
C
D
E
70
F
G
H
I
J
K
L
M
N
O
80
P
Q
R
S
T
U
V
W
X
Y
90
Z
[
]
^
_
`
a
b
c
100
d
e
f
g
h
i
j
k
l
m
110
n
o
p
q
r
s
t
u
v
w
120
x
y
z
{
}
|
~
del
附加: ASP 打印 ASCII 字符
<%
Response.Write "<table width=100%'border=5 align='center'>"
for i=0 to 254
Response.Write "<tr><td>Chr("&i&")</td><td>"&chr(i)&"</td></tr>"
next
Response.Write "</table>"
%>