1) Write the number in reverse order.
Ex: ABC123 —> 321CBA
2) Convert the letter to its numerical value, if necessary.
Ex: 3, 2, 1, 12, 11, 10
3) From left to right, multiply by 16 to the power of n + 1 (starting at zero).
Ex: 3 (16^0) + 2 (16^1) + 1 (16^2) + 12 (16^3) ... + 10(16^5)
4) Add the result!
Ex: 3 + 32 + 256 + 49,152 ... + 10,485,760 =
Answer: 11256099☑️