A character set is a list of characters with a binary number code that represents that character.
A
100 0001
B
100 0010
E
100 0101
F
100 0110
C
100 0011
D
100 0100
a
110 0001
b
110 0010
c
110 0011
d
110 0100
e
110 0101
f
110 0110
Computing = 1000011 1101111 1101101 1110000 1110101 1110100 1101001 1101110 1100111
Computing = 67, 111, 109, 112, 117, 116, 105, 110, 103
David = 68 97 118 105 100
69 110 99 111 100 101 100
Encoded
If the ASCII code for 'a' is 97, what is the code for 'g'?
If the ASCII code 110 is 'n', what character does the code 107 represent?
If the ASCII code for 'A' in binary is 100 0001, what is the code for 'D' in binary?
If the ASCII code 110 0100 is 'd', what character does the binary code 110 0110 represent?
103
k
100 0100
f