1) BCD (Binary Coded Decimal) Code: This code is based on the idea of converting each digit of a decimal number into its binary equivalent in spite of converting the entire decimal value into a pure binary form. In this coding technique each decimal digit is independently converted to a 4 bit binary number which makes conversion process very easy.24=16 configurations are possible but only first 10 are used to represent decimal digits from 0 to 9.
Character
|
BCD Code
|
Octal Equivalent
| |
Zone
|
Digit
| ||
A
|
11
|
0001
|
61
|
B
|
11
|
0010
|
62
|
C
|
11
|
0011
|
63
|
D
|
11
|
0100
|
64
|
E
|
11
|
0101
|
65
|
F
|
11
|
0110
|
66
|
G
|
11
|
0111
|
67
|
H
|
11
|
1000
|
70 |






