No Login Data Private Local Save

Live Binary Clock – Time in Ones and Zeros

10
0
0
0

Live Binary Clock

H·10
0
H·1
0
M·10
0
M·1
0
S·10
0
S·1
0
00:00:00
00000:000000:000000
Unix: 0000000000
Frequently Asked Questions
A binary clock is a clock that displays time in binary numeral system instead of decimal digits. Each LED (or dot) represents a single bit — either 1 (lit/on) or 0 (dim/off). By reading the pattern of lit dots in each column and summing their weight values (powers of 2), you can determine the exact time. Binary clocks are popular among programmers, engineers, and tech enthusiasts as a fun, geeky way to visualize time while reinforcing binary numeracy.
This clock uses BCD (Binary-Coded Decimal) format. Each decimal digit of the time is encoded separately in its own column:

Columns 1–2 = Hours (tens and ones)
Columns 3–4 = Minutes (tens and ones)
Columns 5–6 = Seconds (tens and ones)

To read a column, add up the weight values (shown on hover) of all lit dots. For example, if dots at positions 4 and 1 are lit in a 4-bit column, the digit is 4 + 1 = 5. The column's decimal value is also displayed directly beneath it for easy verification.
BCD (Binary-Coded Decimal) encodes each decimal digit independently. Hours are split into two columns (tens: 0–2, ones: 0–9), each using 2–4 bits. This matches how we naturally read digital clocks.

Pure Binary encodes the entire hour (0–23) as one 5-bit binary number, minutes (0–59) as 6 bits, and seconds (0–59) as 6 bits — using only 3 rows total. This clock displays both formats: the LED grid shows BCD, while the "Pure Binary Representation" line below shows the compact 3-number pure binary form.
Binary clocks are both educational and aesthetically unique. They help you practice reading binary numbers — a fundamental skill in computer science. Beyond learning, they serve as stylish desk gadgets or screensaver alternatives for developers, offering a minimalist cyberpunk aesthetic. Many people find that regularly reading a binary clock improves their mental math and binary-to-decimal conversion speed over time.
Yes! Use the 24-Hour / 12-Hour buttons above to toggle between formats. In 12-hour mode, the hours range from 1–12, and an AM/PM indicator appears below the digital time display. The BCD columns automatically adjust — the hour-tens column will only show 0 or 1 (since 12-hour time never exceeds 12), while the hour-ones column correctly displays values 0–9.
Hovering over any LED dot reveals its binary weight (1, 2, 4, or 8). In binary, each bit position represents a power of 2. From bottom to top in a column: the lowest dot = 2⁰ = 1, next = 2¹ = 2, next = 2² = 4, top = 2³ = 8. To decode a column's digit, simply sum the weights of all lit dots. This interactive tooltip makes the clock an excellent learning tool for binary beginners.
Absolutely! Click the Theme button to cycle through multiple LED color schemes: Cyan (default), Green (matrix-style), Amber (retro), Magenta, and White. Each theme changes the glow color of active LEDs and accent elements throughout the clock. Your preference is saved in your browser's local storage and will persist across visits.
Yes. The Unix timestamp displayed below the binary string updates every second. It shows the number of seconds that have elapsed since January 1, 1970 00:00:00 UTC (the Unix epoch). This is a widely used timestamp format in programming, databases, and system logs. It's particularly handy for developers who need to grab a quick timestamp while working.