First you need to understand the decimal numbering system. In our every day system numbers have a "place value". In other words, the number 3 in the first column has a place value of three. If it's in the second column (also known as the tens column), it has a value of thirty; in the third column it has a value of three hundred and so on. So if you look at numbers in columns you have values, from right to left of 1,10,100,1000, 10000 and so on. These are the powers of ten: 10 to the zero power = 1, 10 to the first power = 10, 10 squared = 100, etc.
In hex the values are 1, 16, 256, 4096 and so on. These are the powers of 16. 16 to the zero power =1, 16 to the first power = 16, 16 squared=256, etc.
Where we have ten numbers in our every day system (0,1,2,3,4,5,6,7,8,9), there are sixteen numbers
in the hex system (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F). For some reason Yahoo will not show the F following the E unless you mouse over it.
Now imagine a column of numbers in the right most position. I hex,a 1 in that position would have a value on one (decimal), a 2 a value of two. So counting up,
0=0
1=1
2=2
3=3
4=4
5=5
6=6
7=7
8=8
9=9
A=10
B=11
C=12
D=13
E=14
F=15
10=16
11=17 And so on.
A one in the second column has a value of 16.
I hope this helps a little - it's too big a subject to cover in this forum. Try googleing "hexadecimal numbering system" and check www. wikepedia.com
http://www.the-eggman.com/seminars/about_hex.html
You can cheat here, but be sure you learn it later:
http://www.ronshardwebapps.com/Numbers.asp