Convert Unix Timestamp to AEDT (Australian Eastern Daylight Time)

Summer variant of AEST, UTC+11. Active October–April.

Right now in AEDT

2026-04-28 08:13:48 GMT+10

Current UTC offset: +10:00 · UTC equivalent: 2026-04-27 22:13:48 UTC

Sample Conversions

Unix TimestampNoteAEDT Time
1706745600 Sample timestamp 2024-02-01 11:00:00 GMT+11
1577836800 New Year 2020 2020-01-01 11:00:00 GMT+11
1704067200 New Year 2024 2024-01-01 11:00:00 GMT+11

How to Convert in Code

Python

from datetime import datetime
from zoneinfo import ZoneInfo
dt = datetime.fromtimestamp(1706745600, ZoneInfo('Australia/Sydney'))
print(dt)

JavaScript (with Intl)

new Date(1706745600 * 1000).toLocaleString('en-US', {
  timeZone: 'Australia/Sydney'
})

PHP

$dt = new DateTime('@1706745600');
$dt->setTimezone(new DateTimeZone('Australia/Sydney'));
echo $dt->format('Y-m-d H:i:s T');

Daylight Saving Time

This zone observes daylight saving time. The standard offset shown above shifts by one hour during the DST window. Always store timestamps as Unix epoch (UTC) - never as local wall-clock time - to avoid the dreaded "missing hour" and "duplicate hour" bugs at DST transitions.

Related Timezones (Oceania)

Need the full converter? Open the Timestamp Converter →