UTC to EST converter

Enter a UTC timestamp and get Eastern local time for that exact date, with the winter and summer offsets handled for you.

⇆ EST to UTC

Converted time

Original
Difference
UTC

Every hour of the day, UTC to EST

UTC never shifts; Eastern does, so the offset depends entirely on the date. Change the date above and this table follows it.

Need a different pair?

This page is fixed to UTC and Eastern Time. For any other two places, or to see every US zone and world city at once, use the full time zone converter — it covers 97 cities, flags daylight-saving gaps, and includes a meeting planner.

Related calculators

The offset is not fixed, which is the whole problem

UTC never moves. Eastern does. From the second Sunday in March to the first Sunday in November the eastern United States runs at UTC−4; the rest of the year it runs at UTC−5. So converting a UTC timestamp needs the date as well as the time, and any code that hardcodes minus five will be an hour wrong for about eight months of the year.

Winter: UTC − 5 = Eastern   |   Summer: UTC − 4 = Eastern

Reading server logs and ISO timestamps

Almost all logging, database and API timestamps are stored in UTC, usually in ISO 8601 form ending in a Z, such as 2026-03-15T14:30:00Z. That trailing Z means UTC exactly. Converting to Eastern for an incident report or a customer email is where the mistakes creep in, especially for events near midnight UTC, which fall on the previous evening in Eastern.

Midnight UTC is the previous day in America

00:00 UTC is 8:00 PM the previous evening in Eastern during summer, or 7:00 PM in winter. Daily aggregation jobs that run at midnight UTC therefore cut the American day in the middle of the evening, which is a common source of confusion in reporting dashboards.

GMT is not quite a synonym

People often write GMT when they mean UTC. For practical purposes the two are within a second of each other, but GMT is also the winter time of the United Kingdom, which switches to BST in summer. UTC never does. If a system says UTC, take it literally.

Frequently asked questions

Is EST always UTC−5?
Only in winter. From mid-March to early November the eastern United States is on EDT at UTC−4, so a fixed minus-five conversion is wrong for most of the year.
What time is 12:00 UTC in Eastern?
8:00 AM Eastern during daylight saving, or 7:00 AM outside it. The date decides which.
What does the Z mean at the end of a timestamp?
It marks the time as UTC exactly, with no offset. It is the ISO 8601 shorthand for zero offset.
Is UTC the same as GMT?
For everyday purposes they match, but GMT is a time zone the UK leaves each summer for BST, while UTC is a fixed reference that never shifts.

How ListCalc calculates · Report an error

Guides & articles