answersLogoWhite

0

One method:

Take the decimal number, divide by 16.

The remainder of the division will be the least significant (rightmost) digit of the hexadecimal number. (Of couse, convert 10 to a, 11 to b, etc.)

Take the quotient from the previous step, divide it by 16. The remainder will be the next digit of the hexadecimal number (going right to left).

Repeat until the quotient is 0.

Example: Convert 300 to hexadecimal.

300/16 = 18 Remainder 12 (12 is c in hex).

18 /16 = 1 remainder 2.

1/16 = 0 remainder 1.

So the hexadecimal number is 12c.

User Avatar

Wiki User

15y ago

What else can I help you with?