Kostenloser Binär-zu-Dezimal-Umrechner
Rechnen Sie Binärzahlen (Basis 2) in Dezimalzahlen (Basis 10) um.
Dezimalwert
21
Formel
Binary to Decimal Converter
How It Works
Each binary digit (bit) represents a power of 2. From right to left:
Multiply each bit by its place value and sum all the results.
Lösungsbeispiel
Convert binary 00010101 to decimal.
- 010×128 + 0×64 + 0×32 + 1×16 + 0×8 + 1×4 + 0×2 + 1×1
- 02= 0 + 0 + 0 + 16 + 0 + 4 + 0 + 1
- 03= 21 in decimal
Häufig Gestellte Fragen
What is binary?
Binary is a base-2 number system that uses only two digits: 0 and 1. It is the fundamental language of computers.
How do I read a binary number?
Read each digit from right to left. Each position represents a power of 2 (1, 2, 4, 8, 16, ...). Add up the values where the digit is 1.
Lernen