Australian Western Time

Australia/Perth

At a glance

IANA
Australia/Perth
Standard offset
UTC+8 (GMT+8)
Observes DST?
No
Countries
AU
Main cities
Perth, Mandurah, Bunbury, Geraldton

Also known as

Australia/West

Cities in this timezone

Developer snippets

// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Australia/Perth' }).format(new Date());

// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Australia/Perth'));

// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Australia/Perth'));