Convert Binary Coded Decimal to decimal using nibble extraction
BCD (Binary Coded Decimal) represents each decimal digit with its own 4-bit binary value. For example, decimal 975 becomes 1001 (9), 0111 (7), 0101 (5). This format is common in digital displays, real-time clocks, and legacy industrial equipment where decimal precision matters.