A live countdown to any future date and time, with days, hours, minutes, and seconds ticking down once per second. Useful for pinning a deadline on a monitor, building anticipation for an event, or reminding yourself how much time you have left before something important. The target is shareable via a URL that preserves the target date and title, so you can send a link instead of explaining a countdown over chat.
How it works
Two inputs: the target date and time (using a browser-native date picker so the format is whatever your OS prefers), and an optional title that shows above the countdown digits. Both update live — the URL changes as you type, so you can copy the link at any point and send it as the shareable countdown.
The countdown itself ticks once per second via setInterval. Each tick reads Date.now() fresh rather than decrementing a counter, so the display never drifts out of sync with your system clock. The four digit columns show days, hours, minutes, and seconds — all zero-padded, all tabular-numeric so the width doesn’t jitter as the seconds tick.
When the target is reached (or you enter a past date), the display swaps to “Target reached” and stops ticking. If you update the target to a new future date, the countdown resumes.
Example: New Year’s Eve
Pick 2026-12-31T23:59 as the target, type “New Year’s Eve” in the title, copy the share link. Anyone who clicks the link sees exactly what you see — a countdown to the last minute of 2026, labelled with your title, in their local timezone. Their midnight is 11 hours later than Tokyo’s midnight and 11 hours earlier than Honolulu’s, so each viewer gets the countdown that’s right for them without any manual conversion.
Example: a deadline on a monitor
Pin a browser tab to a second monitor with the countdown open, target set to whatever the due date is — product launch, submission deadline, contract expiry. The tab updates every second, the title serves as a caption, and the window stays useful in the background. The browser may throttle the update rate when the tab is not the active one, but when you flick your eyes to it the time is always correct within a second.
Example: sharing with a team
You’re coordinating a launch with a distributed team and want everyone seeing the same countdown. Set the target date, add a title, hit Copy share link, paste into Slack. Each team member opens the link and sees the countdown in their own timezone — no timezone math in the chat, no spreadsheet converting the launch moment to each city. The URL is stateless: no account needed, no backend, nothing tracked. Just a parameter in the querystring saying when the countdown should end.
Sharing and permanence
The shareable URL is built from two query params: t (the target date in YYYY-MM-DDTHH:MM format) and title (optional, URL-encoded). When you change either field, the URL updates in place without a page reload so the link in your clipboard always matches what you see on screen. There’s no server involved — open the link in any browser, anytime, and it loads the same countdown.
The URL is the entire state. That means:
- It works forever — as long as this page exists, your link works
- It’s private — the target is in the URL, not on a server, so there’s no log of who’s countdown-ing what
- It’s deterministic — no caching quirks, no session state, the URL fully describes the countdown
The trade-off is that anyone with the URL can see the target — don’t put a secret in the title field.
Local time vs UTC
The target is always interpreted in the viewer’s local timezone. If you set the target to 2026-12-31T23:59 and share the link with someone in another country, they’ll see the countdown hit zero at 23:59 their clock, which is a different UTC instant than yours. For most personal countdowns (birthdays, holidays, deadlines) this is what you want — everyone experiences the milestone at their local wall time.
For product launches, cross-continent coordination, or anything that needs a specific UTC instant, use the timezone converter to translate a UTC moment into a local target for your audience before creating the share link. Or accept that each viewer will see the countdown hit zero at a slightly different objective moment.
What this tool does not do
It doesn’t send notifications. When the countdown reaches zero there’s no alert, no sound, no desktop notification. Use your OS calendar or a reminder app if you need that.
It doesn’t count upward from a past date. For “time since” calculations use the age calculator or the date difference calculator instead. Those tools are designed to count up from a past moment rather than down to a future one.
It doesn’t persist state across devices beyond the share link. If you bookmark the URL on your phone and your laptop, both see the same countdown — but there’s no “my countdowns” list, no sync, no account. Each countdown lives entirely in its URL.
It doesn’t support recurring countdowns (every Monday, every month). A countdown has exactly one fixed target. For recurring reminders, use a calendar app — those are designed around repeated events.