Hex To Binary


Be sure to read my binary blog post and hexadecimal blog post before you read this tutorial on binary to hex.

Hex To Binary



Lets star with a hex number

F47B

Using the hex chart convert the hex to decimal numbers. .

F | 4 | 7 | B

15 | 4 | 7 | 11

Now convert each decimal number into binary

1111 | 0100 | 0111 | 1011

8 + 4 + 2 + 1 | 0 + 4 + 0 + 0 | 0 + 4 + 2 + 1 | 8 + 0 + 2 + 1

15 4 7 | 11

The answer is

11110100011111011

Home

  • Home

Binary

  • Binary Basic
  • Binary addition
  • Binary Subtraction

Hex

  • Hexchart
  • Binary To Hex
  • Hex To Binary

Octal

  • Octal To Decimal
  • Decimal To Octal

Basics of a computer

  • Four stages of a computer
  • Dram VS. SRAM
  • programs and software