The number is presented as hexadecimal. (also: base 16, or hex) Is a positional numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A, B, C, D, E, F (or alternatively a–f) to represent values ten to fifteen.
For transfer in decimal system it is possible to take advantage of the formula:
Dec=i=1∑nS∗16i−1
Were: S – value of symbol, i – place of symbol from right
Solution:
Hex=12a2b3c4Dec=1∗167+2∗166+10∗165+2∗164+11∗163+3∗162+12∗161+4∗160=268435456+33554432+131072+45056+768+192+4=312652740
Answer: 312652740