Easter Island Time
Pacific/Easter
At a glance
- IANA
- Pacific/Easter
- Standard offset
- UTC−6 (GMT-6)
- DST offset
- UTC−5 (GMT-5)
- Observes DST?
- Yes
- Countries
- CL
- Main cities
- Easter
Also known as
Chile/EasterIsland
Developer snippets
// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Pacific/Easter' }).format(new Date());
// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Pacific/Easter'));
// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Pacific/Easter'));