Convert Unix Timestamp to AKST (Alaska Standard Time)

UTC-9 in winter, AKDT (UTC-8) in summer.

Right now in AKST

2026-04-27 14:13:47 AKDT

Current UTC offset: -08:00 · UTC equivalent: 2026-04-27 22:13:47 UTC

Sample Conversions

Unix TimestampNoteAKST Time
1706745600 Sample timestamp 2024-01-31 15:00:00 AKST
1577836800 New Year 2020 2019-12-31 15:00:00 AKST
1704067200 New Year 2024 2023-12-31 15:00:00 AKST

How to Convert in Code

Python

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

JavaScript (with Intl)

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

PHP

$dt = new DateTime('@1706745600');
$dt->setTimezone(new DateTimeZone('America/Anchorage'));
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 (North America)

Need the full converter? Open the Timestamp Converter →