View Full Version : Learning Binary


h4x0r
11-11-2005, 11:43 AM
Binary is very simple, even though most people look at it and go "Uhhhhhhhhhhhh...".

Here's a list of all the letters in the alphabet and what they are in Binary.

--------------------
a = 01100001
b = 01100010
c = 01100011
d = 01100100
e = 01100101
f = 01100110
g = 01100111
h = 01101000
i = 01101001
j = 01101010
k = 01101011
l = 01101100
m = 01101101
n = 01101110
o = 01101111
p = 01110000
q = 01110001
r = 01110010
s = 01110011
t = 01110100
u = 01110101
v = 01110110
w = 01110111
x = 01111000
y = 01111001
z = 01111010
-----------------------

Once you can remember that pattern its very easy to use binary...now here's a list of numbers from 0-10.

-----------------------
0 = 00110000
1 = 00110001
2 = 00110010
3 = 00110011
4 = 00110100
5 = 00110101
6 = 00110110
7 = 00110111
8 = 00111000
9 = 00111001
10 = 0011000100110000
-----------------------

Also with capitol letters the binary number starts with 010 instead of 011...
Example:
A = 01000001
Z = 01011010

Hope this guide helped in some weird way...