Decimal to BCD Converter is used to convert a Decimal number (Base-10) into Binary Coded Decimal format
Output: BCD numbers
Convert Binary Coded Decimal number to Decimal
View ToolConversion from Decimal to BCD
A Decimal can be converted to BCD using these steps:-
- Convert each decimal digit into nibble
- Combine the nibbles into BCD
Example Decimal to BCD Conversion
Let's say your Decimal value is 911
, and you want to convert it to its bcd form.
- Step 1: Convert decimal digits to nibble
9
becomes1001
1
becomes0001
1
becomes0001
- Step 2: Combine the nibbles to get your BCD number:
100100010001
Decimal
Decimal is the numeric system most used by us humans. It consists of the Hindu-Arabic numerals, a set of 10 digits from 0 to 9.
Binary Coded Decimal
Binary Coded Decimal or BCD is a set of binary encodings for decimal numbers used in early digital computers. In BCD, a binary sequence is used to represent each digit of the source decimal number
History
- Jan 30, 2018
- Tool Launched
Comments 0