Current Unix Epoch (live)
The current Unix timestamp, updating every second. Click the copy buttons for seconds or milliseconds.
What's a Unix timestamp?
A single integer counting seconds since 1970-01-01 00:00:00 UTC (the Unix epoch). It's the most portable way to represent time in computer systems — timezone-independent, easy to compare, easy to compute differences. See our explainer for the full story.
Seconds or milliseconds?
Most systems use seconds. JavaScript and Java use milliseconds.
Some databases use microseconds. When you copy "now" from this tool,
pick the unit your system expects. If unsure: most languages with
a time() function return seconds; JavaScript's
Date.now() returns milliseconds. See
the comparison.
Programmatic "now"
# Bash
date +%s # seconds
date +%s%3N # milliseconds (GNU)
# Python
import time
time.time() # float seconds with sub-second precision
int(time.time() * 1000) # ms
# JavaScript / Node
Date.now() # ms
Math.floor(Date.now() / 1000) # seconds
# Go
time.Now().Unix() # seconds
time.Now().UnixMilli() # ms
# PostgreSQL
SELECT EXTRACT(EPOCH FROM NOW())::bigint;
# MySQL
SELECT UNIX_TIMESTAMP();
# Curl test (returns server's idea of "now" in HTTP Date header)
curl -sI https://www.google.com | grep -i ^date:
Why this is useful
Anyone working with logs, distributed systems, or time-series data needs to translate between timestamps and human-readable dates a few times an hour. Having a tab open with the current Unix epoch is surprisingly useful — keep it pinned.
Bookmark this URL
https://epoch.tooljo.com/now — fastest live Unix epoch
on the web. No ads, no fluff, no upload. Add to your dev bookmarks.
FAQ
How fresh is the time?
It updates every second from your browser's clock. The 'now' value comes from Date.now(), which is whatever your operating system reports — typically NTP-synced and accurate to within a few milliseconds.
Why is my time off by a few seconds?
Your computer's clock is drifting. macOS and most Linuxes sync via NTP automatically; Windows usually does too. If you're seeing seconds-of-drift, your time service is broken or disabled.
Can I bookmark this with a specific timestamp?
Yes — append #t=1735689600 to the URL of the main converter. The page auto-fills the input on load.