As we know that computers do not understand the programming languages, it is necessary to translate the programming codes into machine readable format. This translation is done using the ASCII (American Standard Code for Information Interchange) codes. Here is an online ASCII and Binary Codes of Alphabets Chart which helps you to convert from alphabets (small and capital letters) to ASCII and Binary Code. A Binary number has 6 bits which help to solve some puzzles.
Character | Ascii Code | Binary Code |
---|---|---|
A | 65 | 1000001 |
B | 66 | 1000010 |
C | 67 | 1000011 |
D | 68 | 1000100 |
E | 69 | 1000101 |
F | 70 | 1000110 |
G | 71 | 1000111 |
H | 72 | 1001000 |
I | 73 | 1001001 |
J | 74 | 1001010 |
K | 75 | 1001011 |
L | 76 | 1001100 |
M | 77 | 1001101 |
N | 78 | 1001110 |
O | 79 | 1001111 |
P | 80 | 1010000 |
Q | 81 | 1010001 |
R | 82 | 1010010 |
S | 83 | 1010011 |
T | 84 | 1010100 |
U | 85 | 1010101 |
V | 86 | 1010110 |
W | 87 | 1010111 |
X | 88 | 1011000 |
Y | 89 | 1011001 |
Z | 90 | 1011010 |
Character | Ascii Code | Binary Code |
---|---|---|
a | 97 | 1100001 |
b | 98 | 1100010 |
c | 99 | 1100011 |
d | 100 | 1100100 |
e | 101 | 1100101 |
f | 102 | 1100110 |
g | 103 | 1100111 |
h | 104 | 1101000 |
i | 105 | 1101001 |
j | 106 | 1101010 |
k | 107 | 1101011 |
l | 108 | 1101100 |
m | 109 | 1101101 |
n | 110 | 1101110 |
o | 111 | 1101111 |
p | 112 | 1110000 |
q | 113 | 1110001 |
r | 114 | 1110010 |
s | 115 | 1110011 |
t | 116 | 1110100 |
u | 117 | 1110101 |
v | 118 | 1110110 |
w | 119 | 1110111 |
x | 120 | 1111000 |
y | 121 | 1111001 |
z | 122 | 1111010 |
Use the above ASCII and Binary Codes of Alphabets Chart for reference and find the equivalent values between characters, ASCII code and binary codes. For example, the ASCII value for alphabet 'A' is 65 and binary code is 1000001, similarly ASCII value for alphabet 'a' is 97 and binary code is 1100001.