Convert a Unix timestamp across 13 timezones or watch a live world clock for UTC, New York, London, Paris, Tokyo, and more. DST-aware, 100% in-browser.
Multi-Timezone Collaboration View
// Paste a Unix timestamp (s/ms/µs) or ISO date to see that moment in every zone — or leave empty for the live clock.
A Unix timestamp describes a single moment for the whole planet. What differs is how that moment is displayed. By default this page shows the current instant live, refreshed every second, across 13 zones: UTC, Casablanca, London, Paris, Dubai, Mumbai, Singapore, Tokyo, Sydney, New York, Chicago, Los Angeles, and São Paulo. Paste a Unix timestamp (seconds, milliseconds, or microseconds) or an ISO 8601 date into the input to freeze the grid on that exact moment. Each zone then uses the UTC offset that applied at that time, daylight saving included. Click Live now to return to the live clock. Each card shows the local time, the local date, the current UTC offset, and the IANA zone name, so you can plan a call or read an incident timeline without mental arithmetic.
The live counter at the top shows the current Unix seconds and ISO 8601 UTC time. All formatting uses your browser’s built-in Intl timezone database — no request leaves your tab.
Unix time counts seconds since 1970-01-01 00:00:00 UTC. The value 1715429912 is Saturday, May 11, 2024 at 12:18:32 UTC everywhere. In Tokyo (UTC+9) that same moment reads 21:18:32; in New York, which was on daylight time (UTC−4), it reads 08:18:32. Store and transmit the timestamp; convert to a zone only at the edge, when a human reads it. Paste 1715429912 into the input above to see exactly that. For every representation of a single timestamp (ISO 8601, SQL, RFC 2822, relative time), use the Unix timestamp converter.
An IANA timezone such as Europe/Paris or America/New_York is a named set of rules that records every offset change a region has made, including daylight saving time. A fixed offset such as +02:00 is just a number. Offsets describe one moment; zones describe a place across time.
2024-05-11T14:18:32+02:00, because they describe one instant precisely.DST shifts local clocks, not Unix time. During a “spring forward” change one local hour never happens; during “fall back” one local hour happens twice. If you schedule by local wall-clock time, pick a rule for those gaps and overlaps. If you schedule by Unix seconds, DST cannot break your math. Regions also change DST policies over time, which is why keeping an up-to-date timezone database matters on servers.
const d = new Date(1715429912 * 1000);
new Intl.DateTimeFormat('en-GB', {
timeZone: 'Asia/Tokyo', dateStyle: 'medium', timeStyle: 'medium',
}).format(d); // "11 May 2024, 21:18:32"from datetime import datetime, timezone
from zoneinfo import ZoneInfo
dt = datetime.fromtimestamp(1715429912, tz=timezone.utc)
print(dt.astimezone(ZoneInfo("Asia/Tokyo"))) # 2024-05-11 21:18:32+09:00More languages: Python, PHP, Go. In PostgreSQL, AT TIME ZONE does the same job — see the PostgreSQL timestamp guide.
+01:00 for Paris is wrong half the year.Distributed teams use this grid to pick meeting slots, on-call engineers use it to read timestamps from colleagues in other regions, and community managers pair it with Discord timestamps, which show every reader the event in their own zone automatically.
No. A Unix timestamp counts seconds since 1970-01-01 00:00:00 UTC, so it is identical everywhere. Only its display changes: 1715429912 is 12:18:32 UTC, 21:18:32 in Tokyo, and 08:18:32 in New York (EDT).
It is a region identifier such as Europe/London or America/Sao_Paulo from the IANA tz database. It includes historical and daylight-saving rules, unlike a fixed offset such as +01:00.
DST changes local clock readings, not Unix time. Converting the same Unix value to a zone before and after a DST change yields a different UTC offset, which is why you should store Unix seconds or UTC.
Yes. Paste Unix seconds, milliseconds, microseconds, or an ISO 8601 date into the input. The grid shows that moment in all 13 zones with the offsets in effect at that time. Clear the field or click Live now to return to the live clock. For other IANA zones, use the code examples above.
Some regions chose non-hour offsets, such as India (UTC+5:30) and Nepal (UTC+5:45). Always use IANA zone names so libraries apply the correct offset.
No. Times are formatted with your browser’s built-in Intl API. The world clock runs locally and does not transmit data.