130k views
4 votes
How do you convert from hexadecimal (Base-16) to binary (Base-2)?

1 Answer

3 votes

Final answer:

To convert from hexadecimal (Base-16) to binary (Base-2), you can convert each individual hex digit to its corresponding 4-bit binary representation.

Step-by-step explanation:

To convert from hexadecimal (Base-16) to binary (Base-2), you can convert each individual hex digit to its corresponding 4-bit binary representation. Here's an example:

Let's say we want to convert the hexadecimal number 3AF to binary. We can start by converting each digit:

  • The digit 3 in hexadecimal is equivalent to 0011 in binary.
  • The digit A in hexadecimal is equivalent to 1010 in binary.
  • The digit F in hexadecimal is equivalent to 1111 in binary.

Putting the binary digits together, we get the binary representation of 3AF as 001110101111.

User Jean Jung
by
8.2k points