UTC Converter
Convert between Coordinated Universal Time (UTC) and local time zones. View times across multiple zones.
UTC Time
Friday, July 17, 2026 at 04:18:00 AM UTC
Eastern Time (EST/EDT)
Friday, July 17, 2026 at 12:18:00 AM EDT
Other Formats
2026-07-17T04:18:00.000Z1784261880World Times
What Is UTC and Why Does It Matter?
UTC (Coordinated Universal Time) is the global time standard that all world time zones are defined relative to. It is based on atomic clocks (International Atomic Time, TAI) adjusted for Earth's irregular rotation, making it more stable than historical astronomical time standards. UTC replaced GMT (Greenwich Mean Time) as the international standard in 1972, though the two are often used interchangeably in everyday contexts (they differ by at most 0.9 seconds).
Every time zone in the world is expressed as a UTC offset — either UTC+ (ahead of UTC) or UTC− (behind UTC). New York is UTC−5 (Eastern Standard Time) or UTC−4 (Eastern Daylight Time); London is UTC+0 (GMT) or UTC+1 (BST); Tokyo is UTC+9 (JST); India is UTC+5:30 (IST). UTC itself never observes daylight saving time — it is the same time everywhere on Earth, all year round.
This UTC converter converts a local date and time in any supported timezone to its UTC equivalent, or converts a UTC date and time to the local time in any supported timezone. It is an essential tool for scheduling international meetings, verifying API timestamps, and synchronizing distributed systems across time zones.
UTC Conversion Formula
Converting between local time and UTC is a straightforward addition or subtraction of the UTC offset.
Local Time to UTC
Where:
- UTCoffset= The number of hours (and sometimes half-hours) that the local timezone is ahead of (+) or behind (−) UTC
- LocalTime= The clock time at the observer's location
- UTC= Coordinated Universal Time — the single reference time for all global conversions
- DST adjustment= Add 1 hour to the UTC offset during daylight saving time periods (e.g., EST UTC−5 becomes EDT UTC−4)
Major Time Zones and UTC Offsets
| Timezone | Standard Offset | DST Offset | Major Cities |
|---|---|---|---|
| EST / EDT | UTC−5 | UTC−4 | New York, Toronto, Miami |
| CST / CDT | UTC−6 | UTC−5 | Chicago, Houston, Mexico City |
| PST / PDT | UTC−8 | UTC−7 | Los Angeles, Seattle, Vancouver |
| GMT / BST | UTC+0 | UTC+1 | London, Dublin, Lisbon |
| CET / CEST | UTC+1 | UTC+2 | Paris, Berlin, Rome |
| IST | UTC+5:30 | No DST | Mumbai, Delhi, Bangalore |
| JST | UTC+9 | No DST | Tokyo, Seoul, Osaka |
How to Use This Converter
- Select Conversion Direction: Choose "Local to UTC" or "UTC to Local."
- Enter the Date and Time: Type the date and time you want to convert in the input field.
- Select Timezone: Choose the source timezone (for Local to UTC) or destination timezone (for UTC to Local) from the dropdown list.
- Read Results: The converted time is shown in both the target timezone and in ISO 8601 format for easy copy-paste into APIs or databases.
Real-World Applications
Software developers need UTC conversion constantly when working with APIs, databases, and distributed systems. All server-side timestamps should be stored in UTC to avoid timezone-related bugs — converting to local time only at the display layer. When a log says "event occurred at 14:35:22," you need to know if that's UTC or local time, and convert accordingly.
International businesses schedule meetings, conference calls, and webinars across time zones. Converting a proposed meeting time to UTC first, then to each participant's local time, ensures everyone shows up at the right moment. Forgetting to account for daylight saving time transitions (which happen on different dates in the US and Europe) is a common source of scheduling errors.
Financial markets operate on UTC timestamps for trade execution records, settlement dates, and regulatory reporting. The New York Stock Exchange opens at 14:30 UTC (9:30 AM EST); the London Stock Exchange opens at 08:00 UTC; Tokyo Stock Exchange at 00:00 UTC. UTC provides the universal reference for comparing cross-market events.
Worked Examples
New York Meeting to UTC
Problem:
A meeting is scheduled for 2:00 PM Eastern Time (EDT, UTC−4). What is that in UTC?
Solution Steps:
- 1Local time: 14:00 EDT
- 2UTC offset for EDT: −4 hours
- 3UTC = Local − offset = 14:00 − (−4) = 14:00 + 4 = 18:00
- 4UTC: 18:00 (6:00 PM UTC)
Result:
2:00 PM EDT = 18:00 UTC.
UTC API Timestamp to Local Time
Problem:
An API returns timestamp '2026-06-07T09:30:00Z'. What time is that in Tokyo (JST, UTC+9)?
Solution Steps:
- 1UTC timestamp: 09:30:00 on June 7, 2026
- 2JST offset: +9 hours
- 3Tokyo time = UTC + offset = 09:30 + 9 = 18:30
- 4Date: same day (no midnight crossover)
Result:
2026-06-07T09:30:00Z = June 7, 2026 at 18:30 JST in Tokyo.
DST Transition Complication
Problem:
A call is planned for 10:00 AM New York time on March 8, 2026 (the Sunday of US DST change). What's the UTC equivalent?
Solution Steps:
- 1US DST begins second Sunday in March → March 8, 2026 clocks spring forward 2 AM → 3 AM
- 2At 10:00 AM, EDT is already in effect (not EST)
- 3EDT offset: UTC−4
- 4UTC = 10:00 + 4 = 14:00 UTC
Result:
10:00 AM New York on March 8, 2026 = 14:00 UTC (EDT, not EST, is in effect).
Tips & Best Practices
- ✓Always store application timestamps in UTC in your database — convert to local time only at the display layer.
- ✓When scheduling international calls, convert to UTC first, then to each participant's local time to avoid DST confusion.
- ✓The 'Z' suffix in ISO 8601 timestamps (e.g., 2026-06-07T14:00:00Z) means UTC — 'Z' stands for Zulu time (military designation for UTC).
- ✓US DST begins the second Sunday in March and ends the first Sunday in November. European DST follows a different schedule (last Sunday in March/October).
- ✓India (UTC+5:30) and Nepal (UTC+5:45) never observe DST — their UTC offset is constant year-round, making scheduling with them simpler.
- ✓Unix timestamps are always UTC by definition — they count seconds from January 1, 1970 00:00:00 UTC regardless of your local timezone.
Frequently Asked Questions
Sources & References
Last updated: 2026-06-06
Help us improve!
How would you rate the UTC Converter?
Editorial Note
MyCalcBuddy Editorial Team
This page is maintained as an educational calculator reference.
Formula Source: Standard Mathematical References
by Various