Decimal To Binary

Use our free​ decimal to binary converter​, binary to decimal calculator​, Decimal number to binary. This Decimal to Binary Converter transforms base-10 numbers into binary (base-2) instantly. Enter any decimal integer, and the tool calculates its binary equivalent. Free, fast, and no installation required.

Words Limit/Search : 50
Upto 30k Words Go Pro

Upload File

Share on Social Media:

How to convert decimal to binary: Manual Conversion Method

Divide the decimal number by 2

Record the quotient and remainder (0 or 1).

Repeat with the new quotient until it becomes 0.

Read the remainders backward (bottom to top) for the binary result.

Example: Convert 13 to Binary

StepDivisionQuotientRemainder
113 ÷ 261 (LSB)
26 ÷ 230
33 ÷ 211
41 ÷ 201 (MSB)

Result: Read remainders ↑ to ↓ → 1101


Shortcut: Powers of 2 Subtraction

List powers of 2 (from highest ≤ your number):

  1. 128,64,32,16,8,4,2,1128,64,32,16,8,4,2,1

Subtract largest power possible; mark 1 if used, 0 if skipped.

Example: Convert 25 to Binary

Powers: 16 (≤25), 8 (≤9), 4 (≤1→skip), 2 (≤1→skip), 1 (≤1):

text

 

16 → 25-16=9 → **1**   8  → 9-8=1   → **1**   4  → skipped → **0**   2  → skipped → **0**   1  → 1-1=0   → **1**  

Result: 11001


Decimal to Binary Table

DecimalBinary
00000
10001
20010
30011
40100
81000