The BCD Number System


      The Binary Coded Decimals (BCD) are exactly that, decimals (base 10) that are coded in the binary (base 2) format. Each decimal can be coded in the binary format and below is a table showing the conversions. Notice that the decimals are converted using a 4bit binary code.

      Using the table below, we will convert the decimal number 529 to BCD. 5 in 4 bit binary is 0101, 2 in 4 bit binary is 0010 and 9 in 4 bit binary is 1001. Putting this together we get the following BCD number (notice the space between each coded decimal number):

Answer: 0101 0010 1001BCD = 529 (decimal)


Binary Coded Decimals (BCD)
Decimal #8's4's2's1'sTotals
000000+0+0+0=0
100010+0+0+1=1
200100+0+2+0=2
300110+0+2+1=3
401000+4+0+0=4
501010+4+0+1=5
601100+4+2+0=6
701110+4+2+1=7
810008+0+0+0=8
910018+0+0+1=9