8EB4 to decimal with method

To convert the hexadecimal number 8EB4 to decimal, you can use the following method:

1. Write down the hexadecimal number, 8EB4.
2. Start from the rightmost digit and assign each digit a power of 16 starting from 0.
3. Multiply each digit by 16 raised to the power of its position, and sum the results.

So, the conversion would be:

8 * 16^3 + 14 * 16^2 + 11 * 16^1 + 4 * 16^0
= 8 * 4096 + 14 * 256 + 11 * 16 + 4 * 1
= 32768 + 3584 + 176 + 4
= 36432

Therefore, the hexadecimal number 8EB4 is equal to 36432 in decimal.