The Binary Clock
The Binary Clock


  • Timezones
  • UTC-12

    1111 0100

    UTC-11

    1111 0101

    UTC-10

    1111 0110

    UTC-9

    1111 0111

    UTC-8

    1111 1000

    UTC-7

    1111 1001

    UTC-6

    1111 1010

    UTC-5

    1111 1011

    UTC-4

    1111 1100

    UTC-3

    1111 1101

    UTC-2

    1111 1110

    UTC-1

    1111 1111

    UTC+0 (Zulu)

    0000 0000

    UTC+1

    0000 0001

    UTC+2

    0000 0010

    UTC+3

    0000 0011

    UTC+4

    0000 0100

    UTC+5

    0000 0101

    UTC+6

    0000 0110

    UTC+7

    0000 0111

    UTC+8

    0000 1000

    UTC+9

    0000 1001

    UTC+10

    0000 1010

    UTC+11

    0000 1011

    UTC+12

    0000 1100

    UTC+13

    0000 1101

    UTC+14

    0000 1110

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)
DecimalBinary
0000000
1000001
2000010
3000011
4000100
5000101
6000110
7000111
8001000
9001001
10001010
11001011
12001100
13001101
14001110
15001111
16010000
17010001
18010010
19010011
20010100
21010101
22010110
23010111
24011000
25011001
26011010
27011011
28011100
29011101
30011110
31011111
32100000
33100001
34100010
35100011
36100100
37100101
38100110
39100111
40101000
41101001
42101010
43101011
44101100
45101101
46101110
47101111
48110000
49110001
50110010
51110011
52110100
53110101
54110110
55110111
56111000
57111001
58111010
59111011
60111100