Convert Decimal to Hexadecimal
Conversion steps:
- Divide the number by 16.
- Get the integer quotient for the next iteration.
- Get the remainder for the hex digit.
- Repeat the steps until the quotient is equal to 0.
Example #1
Convert 756210 to hex:
Division by 16 |
Quotient (integer) |
Remainder (decimal) |
Remainder (hex) |
Digit # |
---|---|---|---|---|
7562/16 | 472 | 10 | A | 0 |
472/16 | 29 | 8 | 8 | 1 |
29/16 | 1 | 13 | D | 2 |
1/16 | 0 | 1 | 1 | 3 |
So 756210 = 1D8A16