Current UTC+8 Time — UTC time 8, time in UTC 8, UTC 8 timezone
Live UTC time 8 clock — time in UTC 8. Live UTC+8 clock with the current Unix timestamp. UTC+8 covers China, Singapore, Malaysia, Philippines, Taiwan, and Western Australia — home to roughly 1.7 billion people.
Source time
Enter the date and time you want to convert.
Target timezones
The same moment shown in each timezone.
What time is it in UTC+8 right now?
The current UTC+8 time and matching Unix timestamp are shown live at the top of this page, updated every second. UTC+8 means the clock is 8 hours ahead of Coordinated Universal Time — when London (UTC+00) shows 12:00, UTC+8 shows 20:00 on the same date. No major jurisdiction on UTC+8 observes daylight saving, so this offset is stable year-round.
What countries use UTC+8?
UTC+8 is one of the most populated UTC offsets in the world. Countries and regions: China (CST, China Standard Time), Singapore (SGT), Malaysia (MYT), Philippines (PHT), Taiwan (CST), Indonesia (WITA, western half), Brunei, and Western Australia (AWST). None of these observe daylight saving time at UTC+8, making it a stable offset year-round.
Countries and regions on UTC+8
UTC+8 is one of the most populated time offsets, covering roughly a quarter of humanity. None of these regions observe daylight saving — UTC+8 is a stable, year-round offset.
- China Standard Time (CST) — all of mainland China and Hong Kong use a single timezone Asia/Shanghai
- Singapore Time (SGT, Asia/Singapore)
- Philippine Time (PHT, Asia/Manila)
- Malaysia Time (MYT, Asia/Kuala_Lumpur) and Brunei (Asia/Brunei)
- Western Australia (AWST, Australia/Perth) — no DST
- Taiwan (Asia/Taipei), Mongolia (Asia/Ulaanbaatar)
Why this offset is stable
Most UTC+8 jurisdictions are tropical or subtropical, where the change in daylight duration is small enough that DST offers little benefit. The result is one of the easiest offsets to work with: no transitions, no ambiguous wall-clock times, and a single Unix-timestamp ↔ local-time conversion that holds year-round.
- No DST in any major UTC+8 region
- Eight hours ahead of UTC (London winter)
- 13 hours ahead of US Eastern Standard Time, 16 hours ahead of US Pacific Standard Time
Convert UTC+8 to a Unix timestamp
Unix timestamps are zone-agnostic — the same instant has the same epoch value everywhere. To convert a UTC+8 wall-clock time, treat it as UTC and subtract 8 hours, or use a timezone-aware library that knows Asia/Shanghai. Below are the shortest reliable forms in three common languages.
- JavaScript: new Date("2026-05-28T20:00:00+08:00").getTime() / 1000
- Python: datetime(2026,5,28,20,0,tzinfo=timezone(timedelta(hours=8))).timestamp()
- Shell: TZ="Asia/Shanghai" date -d "2026-05-28 20:00" +%s
UTC+8 vs GMT+8 vs CST
UTC+8 and GMT+8 refer to the same offset for any practical purpose — both put the clock 8 hours ahead of the zero meridian. The CST abbreviation is the trap: it can mean China Standard Time (UTC+8) or Central Standard Time in North America (UTC-6), a 14-hour gap. Always use the IANA name (Asia/Shanghai vs America/Chicago) in code to avoid the collision.
- UTC+8 ≡ GMT+8 — interchangeable in plain English
- CST disambiguates only with the IANA timezone (Asia/Shanghai vs America/Chicago)
- POSIX Etc/GMT-8 (note the inverted sign) is the fixed-offset form of UTC+8
UTC+8 as a UTC offset from Universal Time
UTC+8 is a UTC offset of +8 hours from Universal Time (UTC) — the global reference time against which all timezone offsets are measured. Universal Time is maintained by atomic clocks and is the unambiguous baseline for international timekeeping. UTC+8 means that local clocks read exactly 8 hours ahead of Universal Time at any given instant.
- Universal Time (UTC) → UTC+8: add 8 hours
- UTC+8 → Universal Time: subtract 8 hours
- UTC offset is the signed integer hours from Universal Time — written as UTC+8 here
- The UTC+8 UTC offset is fixed and does not change with daylight saving in any major jurisdiction at this offset
- Universal Time (UTC) is the modern atomic-clock standard that replaced GMT for scientific and software use
- UTC time 8 — the live clock above shows the current UTC time 8
- time in UTC 8 = UTC+8 clock reading at the same instant
- UTC 8 timezone reference — UTC+8 is the IANA offset name
FAQ
- What time is it in UTC+8 right now?
- The live UTC+8 clock at the top of this page updates every second. Because UTC+8 has no daylight saving in any major jurisdiction, the offset from UTC is always exactly 8 hours.
- Is UTC+8 the same as GMT+8?
- Yes, for every practical purpose they refer to the same offset — 8 hours ahead of the zero meridian. UTC is the modern atomic-clock standard; GMT is the historical solar-based equivalent. In code, prefer UTC.
- Does UTC+8 observe daylight saving time?
- No major jurisdiction on UTC+8 currently observes daylight saving. China, Singapore, Malaysia, the Philippines, Taiwan, and Western Australia all stay on UTC+8 year-round.
- How do I convert UTC+8 to a Unix timestamp?
- Treat the wall-clock time as UTC+8 and convert to UTC by subtracting 8 hours, then take the seconds since 1970-01-01 00:00 UTC. Most languages have one-line helpers — see the code examples above.
- What's the difference between UTC+8 and CST?
- CST is ambiguous — it can mean China Standard Time (UTC+8) or US Central Standard Time (UTC-6). They are 14 hours apart. Use the IANA name (Asia/Shanghai vs America/Chicago) in code to avoid confusion.