Current Time in UTC

Local time, UTC offset and daylight saving dates for the UTC time zone, plus a timestamp converter already set to it.

Current local time in UTC

Time zone facts for UTC
IANA identifierUTC
Current UTC offsetUTC+00:00
AbbreviationUTC
Full nameCoordinated Universal Time
RegionOther
Observes DSTNo
Unix timestamp now

Convert a timestamp to UTC time

The output zone below is preset to UTC, with daylight saving applied for whichever date you convert.

Unix timestamp to date

Auto-detect reads the magnitude: 10 digits are seconds, 13 milliseconds, 16 microseconds, 19 nanoseconds.

Converted date and time formats
Your local time
Selected time zone
UTC / GMT
ISO 8601
RFC 2822
Relative
Day of week
Day of year / week

Daylight saving time in UTC

UTC does not observe daylight saving time. Its offset stays at UTC+00:00 every day of the year, which makes it one of the simpler zones to work with: a fixed offset is enough to convert any timestamp, and there are no missing or repeated local hours.

Converting timestamps for this zone in code

Always pass the IANA identifier UTC rather than a numeric offset. The identifier carries the zone's entire history of offset and daylight saving changes, so a timestamp from any year converts correctly; a hard-coded offset is only right until the next rule change.

# Python
from datetime import datetime
from zoneinfo import ZoneInfo
datetime.fromtimestamp(1710050400, ZoneInfo("UTC"))

// JavaScript
new Intl.DateTimeFormat('en-GB', { timeZone: 'UTC',
  dateStyle: 'full', timeStyle: 'long' }).format(new Date(1710050400 * 1000));

<?php // PHP
(new DateTimeImmutable("@1710050400"))->setTimezone(new DateTimeZone("UTC"));

More languages on the code examples pages.

Frequently asked questions

What is the current time in UTC?

The clock above shows the current time in the UTC time zone, updating every second from your own device clock. UTC is currently UTC+00:00 (UTC).

What is the UTC offset for UTC?

UTC stays on UTC+00:00 all year — this zone does not observe daylight saving time, so the offset never changes.

Does UTC observe daylight saving time?

No. UTC does not observe daylight saving time, so its offset from UTC is the same on every day of the year. That makes timestamp conversion for this zone simpler than for zones that shift twice a year.

How do I convert a Unix timestamp to UTC time?

Paste the timestamp into the converter on this page — the output zone is already set to UTC. In code, pass the IANA identifier UTC to your language's time zone function rather than hard-coding an offset, so daylight saving is handled for you.