Email me |
Reading the table (and Unicode conversions)
The numbering of the ASCII values are given in decimal by reading the
row number then the column. So "space" is 32 and "K" is 75. Characters
here can be converted to their Unicode equivalent by converting the decimal
value to a 2-byte hexadecimal one, and giving the result a \u prefix. So
A is 65 in ASCII, which is 0041 in hexadecimal. With the Unicode prefix,
A is thus \u0041. Similarly, z is \u007a and Z is \u005a.
| |
0
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
|
0
|
NULL
|
|
|
|
|
|
|
|
|
|
|
1
|
|
|
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
|
|
|
|
|
3
|
|
|
space
|
!
|
"
|
#
|
$
|
%
|
&
|
'
|
|
4
|
(
|
)
|
*
|
+
|
,
|
-
|
.
|
/
|
0
|
1
|
|
5
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
:
|
;
|
|
6
|
<
|
=
|
>
|
?
|
@
|
A
|
B
|
C
|
D
|
E
|
|
7
|
F
|
G
|
H
|
I
|
J
|
K
|
L
|
M
|
N
|
O
|
|
8
|
P
|
Q
|
R
|
S
|
T
|
U
|
V
|
W
|
X
|
Y
|
|
9
|
Z
|
[
|
\
|
]
|
^
|
_
|
`
|
a
|
b
|
c
|
|
10
|
d
|
e
|
f
|
g
|
h
|
i
|
j
|
k
|
l
|
m
|
|
11
|
n
|
o
|
p
|
q
|
r
|
s
|
t
|
u
|
v
|
w
|
|
12
|
x
|
y
|
z
|
{
|
|
|
}
|
~
|
|
|
|
|
13
|
,
|
ƒ
|
„
|
…
|
†
|
‡
|
ˆ
|
‰
|
Š
|
‹
|
|
14
|
Œ
|
|
Ž
|
|
|
‘
|
’
|
“
|
”
|
•
|
|
15
|
–
|
—
|
˜
|
™
|
š
|
›
|
œ
|
|
ž
|
Ÿ
|
|
16
|
|
¡
|
¢
|
£
|
¤
|
¥
|
¦
|
§
|
¨
|
©
|
|
17
|
ª
|
«
|
¬
|
|
®
|
¯
|
°
|
±
|
²
|
³
|
|
18
|
´
|
µ
|
¶
|
·
|
¸
|
¹
|
º
|
»
|
¼
|
½
|
|
19
|
¾
|
¿
|
À
|
Á
|
Â
|
Ã
|
Ä
|
Å
|
Æ
|
Ç
|
|
20
|
È
|
É
|
Ê
|
Ë
|
Ì
|
Í
|
Î
|
Ï
|
Ð
|
Ñ
|
|
21
|
Ò
|
Ò
|
Ô
|
Õ
|
Ö
|
×
|
Ø
|
Ù
|
Ú
|
Û
|
|
22
|
Ü
|
Ý
|
Þ
|
ß
|
à
|
á
|
â
|
ã
|
ä
|
å
|
|
23
|
æ
|
ç
|
è
|
é
|
ê
|
ë
|
ì
|
í
|
î
|
ï
|
|
24
|
ð
|
ñ
|
ò
|
ó
|
ô
|
õ
|
ö
|
÷
|
ø
|
ù
|
|
25
|
ú
|
û
|
ü
|
ý
|
þ
|
ÿ
|
|
|
|
|
|