Learn Binary
Convert a decimal number to binary:
000000
Binary is the foundation of all digital logic. It uses only two digits—0 and 1—each representing an “off” or “on” state. Every piece of data your computer stores, every signal your processor sends, and every image you see on a screen ultimately reduces to these two values.
To convert from decimal (base-10) to binary (base-2), start with your number and repeatedly divide by two, recording the remainders. Reading those remainders from bottom to top gives the binary equivalent. For example, the number 13 in binary is 1101—which equals 8 + 4 + 1.
Converting back is just as easy: each binary digit represents a power of two. Multiply each “1” by its positional value and sum the results. This process forms the backbone of all modern computing—everything from simple calculators to quantum processors still relies on this pattern of logic.
Once you learn to “see” binary, you’ll start noticing it everywhere—time, data, encryption, even art. The Binary Clock is a playful example of how elegant this language can be: precise, rhythmic, and endlessly interpretable.
Decimal → Binary (0–60)
| Decimal | Binary |
|---|---|
| 0 | 000000 |
| 1 | 000001 |
| 2 | 000010 |
| 3 | 000011 |
| 4 | 000100 |
| 5 | 000101 |
| 6 | 000110 |
| 7 | 000111 |
| 8 | 001000 |
| 9 | 001001 |
| 10 | 001010 |
| 11 | 001011 |
| 12 | 001100 |
| 13 | 001101 |
| 14 | 001110 |
| 15 | 001111 |
| 16 | 010000 |
| 17 | 010001 |
| 18 | 010010 |
| 19 | 010011 |
| 20 | 010100 |
| 21 | 010101 |
| 22 | 010110 |
| 23 | 010111 |
| 24 | 011000 |
| 25 | 011001 |
| 26 | 011010 |
| 27 | 011011 |
| 28 | 011100 |
| 29 | 011101 |
| 30 | 011110 |
| 31 | 011111 |
| 32 | 100000 |
| 33 | 100001 |
| 34 | 100010 |
| 35 | 100011 |
| 36 | 100100 |
| 37 | 100101 |
| 38 | 100110 |
| 39 | 100111 |
| 40 | 101000 |
| 41 | 101001 |
| 42 | 101010 |
| 43 | 101011 |
| 44 | 101100 |
| 45 | 101101 |
| 46 | 101110 |
| 47 | 101111 |
| 48 | 110000 |
| 49 | 110001 |
| 50 | 110010 |
| 51 | 110011 |
| 52 | 110100 |
| 53 | 110101 |
| 54 | 110110 |
| 55 | 110111 |
| 56 | 111000 |
| 57 | 111001 |
| 58 | 111010 |
| 59 | 111011 |
| 60 | 111100 |