Quote:
Originally Posted by Intensero
So out of that which are the decimals? All of the numbers located imbetween?
|
note:
decimal = numbers 0~9
hexacedimal = numbers 0~F
so the decimal number "1000" would be 3E8 in hexadecimal
all of these are mathmatically correct, read from right to left
DECIMAL (deci = 10)
54321 = 1*10^0 + 2*10^1 + 3*10^2 + 4*10^3 + 5*10^4
or (calculated) 1 + 20 + 300 + 4000 + 5000
HEXADECIMAL (hexa = 6, deci = 10)
this time there are 16 values per character, starting with 0 and ending with F. like mabinogi's skills.
in decimal values these represent:
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
making up a total of 16 values.
it uses the same math as decimal, but instead of x*10^y it becomes x*16^y
so A3E8 is, again read from right to left:
8*16^0 + 14*16^1 + 3*16^2 + 10*16^3
or (calculated) 8 + 224 + 768 + 40968 = 41960
alternatively you can also open calculator.exe, press alt + 3 and convert it from that.
edit: ew spoilers didnt work.