BCD to Decimal Converter is used to convert a Binary Coded Decimal number into Decimal format
Output: Decimal numbers
Convert Decimal number to Binary Coded Decimal
View ToolConversion from BCD to Decimal
A BCD can be converted to Decimal using these steps:-
- Break the BCD into nibbles
- Convert each nibble into decimal digit
- Combine the digits to form the decimal number
Example BCD to Decimal Conversion
Let's say your BCD value is 100100010001
, and you want to convert it to its decimal form.
- Step 1: Break the BCD into nibbles:
1001
0001
0001
- Step 2: Convert each nibble into decimal digits
1001
becomes9
0001
becomes1
0001
becomes1
- Step 3: Combine the decimal digits:
911
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
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.
History
- Jan 30, 2018
- Tool Launched
Comments 0