What's the difference between BCD and binary?
Binary represents the entire number at once (975 = 1111001111). BCD represents each digit separately (975 = 1001 0111 0101). BCD is easier to display but uses more bits.
When should I use BCD?
Use BCD for digital displays, real-time clocks (RTCs), financial calculators, and any application where decimal rounding precision matters and display hardware expects digit-by-digit values.
What's packed vs unpacked BCD?
Packed BCD stores two digits in one byte (e.g., 0x97 for 97). Unpacked BCD uses one byte per digit, typically with the digit in the low nibble. Our converter supports both.