Steps for decimal to hexadecimal conversion
1️⃣ Divide the decimal number by 16 and record the remainder (0-F).
2️⃣ Divide the result from step 1 by 16 and record the new remainder.
3️⃣ Repeat step 2 until the result is 0.
4️⃣ The hexadecimal number is formed by writing the remainders in reverse order.