Date to Unix timestamp

No timezone in the input, so it's read as your local time.

Need the epoch value for a date? Paste a date in almost any format (2026-06-01 14:00, June 1 2026 3:00 pm, or an ISO string) and parsetime gives you the Unix timestamp in seconds and milliseconds, along with UTC and your local time.

Detected: ISO 8601 (no timezone)

Your timezone

UTC · GMT+00:00 · UTC

Mon, Jun 01, 2026, 02:00:00 PM

Common formats

UTC

Mon, Jun 01, 2026, 02:00:00 PM

ISO 8601

2026-06-01T14:00:00.000Z

Unix (seconds)

1780322400

Unix (millis)

1780322400000

Relative

World clock

Los Angeles PDT

Mon, Jun 01, 2026, 07:00:00 AM

GMT-07:00

Chicago CDT

Mon, Jun 01, 2026, 09:00:00 AM

GMT-05:00

New York EDT

Mon, Jun 01, 2026, 10:00:00 AM

GMT-04:00

London BST

Mon, Jun 01, 2026, 03:00:00 PM

GMT+01:00

Paris CEST

Mon, Jun 01, 2026, 04:00:00 PM

GMT+02:00

Kolkata IST

Mon, Jun 01, 2026, 07:30:00 PM

GMT+05:30

Shanghai CST

Mon, Jun 01, 2026, 10:00:00 PM

GMT+08:00

Tokyo JST

Mon, Jun 01, 2026, 11:00:00 PM

GMT+09:00

Sydney AEST

Tue, Jun 02, 2026, 12:00:00 AM

GMT+10:00

Common questions

How do I convert a date to a Unix timestamp?
Paste the date above and read the “Unix (seconds)” and “Unix (millis)” rows in the results.
What timezone is my date interpreted in?
If your input includes no timezone, it's read as your local time. Add a Z for UTC or an offset like +02:00 to be explicit. parsetime tells you how it read the input.
What date formats are supported?
ISO 8601, common locale formats like June 1 2026 3:00 pm, 2026-06-01 14:00, RFC 2822, and the keyword “now”.

Related converters