Decimal To Hexadecimal

To convert a decimal number to hexadecimal, we repeatedly divide the number by 16 and store the remainder. For the fractional part, we multiply by 16 and take the integer part. We continue this process until the quotient is 0 (for the integer part) and the fractional part reaches the desired precision.

Example

Convert ( 58.18359375_{10} ) to hexadecimal

  1. Convert the integer part (58):
  • Divide 58 by 16:

  • The remainder 10 corresponds to ‘A’ in hexadecimal.

  • Divide 3 by 16:

So, the integer part ( 58_{10} = 3A_{16} ).

  1. Convert the fractional part (0.18359375):
  • Multiply 0.18359375 by 16: Take the integer part 2.

  • Multiply the remaining fractional part 0.9375 by 16: Take the integer part 15, which corresponds to ‘F’ in hexadecimal.

So, the fractional part ( 0.18359375_{10} = 0.2F_{16} ).

Combining both parts: