Hexadecimal is base 16, and binary is base 2. The key idea is that each hexadecimal digit corresponds to exactly 4 binary digits. This makes conversion fast and reliable.
Use the standard 4-bit patterns:
Replace every hexadecimal digit with its 4-bit binary group, in the same order.
If the result has leading zeros, you can remove them from the left, unless the answer is zero itself.
A good check is to group your final binary answer into sets of 4 bits from the right and compare each group back to the original hexadecimal digits. If every group matches, your conversion is correct.
For a value like 3A, convert 3 and A separately, then join the two 4-bit groups. The method works the same for any hexadecimal number.
© 2023-2026 AI MATH COACH