Missing timezone
A date without timezone may be interpreted as browser local time.
Convert readable date-time text into Unix seconds and milliseconds for APIs, logs, and database fields.
Use this guide when you need a numeric timestamp from a date string, an ISO value, or a local time during debugging.
2026-01-01 00:00:00 2026-01-01T00:00:00Z
The tool returns Unix seconds and Unix milliseconds for the same date-time input.
Use UTC input when the target API expects a timezone-independent value.
A date without timezone may be interpreted as browser local time.
Prefer ISO or YYYY-MM-DD HH:mm:ss to avoid month/day confusion.
Check whether your API expects seconds or milliseconds before copying.
Yes. ISO strings are recommended when timezone clarity matters.
Use seconds for many backend APIs and milliseconds for JavaScript Date workflows.
The same date text may be parsed in local time unless a UTC offset is included.