NordVPN
SponsoredStrict no-logs VPN with 6,400+ servers in 111 countries. Threat Protection blocks ads, trackers, and malware while you work online.
Get NordVPN →Type a Unix timestamp to see the date in multiple formats, or pick a date to get its Unix value. Live current timestamp displayed for reference.
A Unix timestamp is the number of seconds (or milliseconds, in JavaScript) since the Unix epoch — midnight UTC on 1 January 1970. It's a single number that encodes a moment in time without ambiguity. APIs, databases, and log files use it everywhere because comparing timestamps is just integer arithmetic.
JavaScript, Python, and many other systems use milliseconds (Date.now() returns ms in JS). C, Go, and Unix shells use seconds (date +%s). When converting, always check which unit your timestamp is in — a 1.7 trillion value is milliseconds; 1.7 billion is seconds.
ISO 8601 (e.g., 2026-05-06T14:30:00Z) is the universal interchange format. Time zone is explicit ('Z' = UTC, or +09:00 etc.), and it sorts correctly as text. Always use it for storage and APIs.
Locale formats (e.g., 'May 6, 2026, 2:30:00 PM') are for display. They depend on user language and region. The calculator shows both — copy ISO for code, copy locale for emails or reports.
32-bit signed integer Unix timestamps overflow at 2³¹ − 1 seconds = 2,147,483,647 = 03:14:07 UTC on 19 January 2038. Systems using int32 will roll over to negative values, breaking date arithmetic. Modern systems use 64-bit timestamps which are safe for ~292 billion years.
If you're working with embedded systems, old database schemas, or legacy C code, audit for time_t size. Migrating to 64-bit integers is the fix; storing timestamps as strings (ISO) avoids the issue entirely.
Those are milliseconds. JavaScript and many web APIs use ms. Divide by 1000 to get seconds.
None — it's UTC seconds since epoch. Convert it to a local date using the timezone your application or user is in.
Yes. We use the browser's Date API, which uses the system clock. Precision is to the millisecond.
An international standard date-time format: YYYY-MM-DDTHH:MM:SS+TZ. Sortable as text, unambiguous about time zone.
It uses your browser's reported time zone. If your system clock is wrong or the browser zone differs, results differ.
Yes — they represent dates before 1970. Most languages handle them; be careful with database compatibility.
Not yet. For one-off conversions, this tool is fine; for thousands of values, use a script.
No. Conversion runs locally.
Strict no-logs VPN with 6,400+ servers in 111 countries. Threat Protection blocks ads, trackers, and malware while you work online.
Get NordVPN →Managed cloud hosting for WordPress and web apps on DigitalOcean, Vultr, and AWS. Fast setup, no server headaches.
Try Cloudways →Hire freelancers for design, writing, dev, and marketing — or sell your own services. Millions of gigs at every budget.
Browse Fiverr →