America/Adak

Текущие местные дата и время в часовом поясе America/Adak.

UTC-09:00

Loading...
Loading...

Профиль часового пояса

Летнее времяДоступно
Смещение-09:00
Часовой пояс IANAAmerica/Adak

Основная страна, использующая часовой пояс America/Adak, — 🇺🇸 Соединенные Штаты.

Стандарты формата даты и времени

Таблица показывает сравнение различных стандартов формата даты и времени. Каждая строка соответствует отдельному стандарту, например ATOM, COOKIE, ISO и RFC, а также другим.
Формат
Дата и время
ATOM2026-04-11T20:47:15.402-09:00
COOKIESat, 11 Apr 2026 20:47:15 -0900
HTTPSun, 12 Apr 2026 05:47:15 GMT
ISO2026-04-11T20:47:15.402-09:00
ISO 86012026-04-11T20:47:15.402-09:00
MM-dd-yyyy HH:mm:ss04-11-2026 20:47:15
MongoDB2026-04-12T05:47:15.402Z
MySQL DATETIME2026-04-11 20:47:15
RFC 1036Sat, 11 Apr 26 20:47:15 -0900
RFC 1123Sat, 11 Apr 2026 20:47:15 -0900
RFC 2822Sat, 11 Apr 2026 20:47:15 -0900
RFC 33392026-04-11T20:47:15-0900
RFC 7231Sat, 11 Apr 2026 20:47:15 HADT
RFC 822Sat, 11 Apr 26 20:47:15 -0900
RFC 850Saturday, 11-Apr-26 20:47:15 HADT
RSSSat, 11 Apr 2026 20:47:15 -0900
SQL2026-04-11 20:47:15.402 -09:00
SQL Time20:47:15.402 -09:00
UTC2026-04-12T05:47:15.402Z
Unix Epoch1775972835
W3C2026-04-11T20:47:15-09:00
dd-MM-yyyy HH:mm:ss11-04-2026 20:47:15
yyyy-dd-MM HH:mm:ss2026-11-04 20:47:15
yyyy-dd-MM hh:mm:ss a2026-11-04 08:47:15 PM

Связанные часовые пояса

Таблица со списком часовых поясов с одинаковым смещением времени. Включает названия и аббревиатуры часовых поясов.

В таблице указано 5 часовых поясов.
Часовой пояс IANA
Название смещения
Аббр.
America/AdakГавайско-алеутское летнее времяGMT-9
America/AtkaГавайско-алеутское летнее времяGMT-9
Etc/GMT+9GMT-09:00GMT-9
Pacific/GambierГамбьеGMT-9
US/AleutianГавайско-алеутское летнее времяGMT-9

Для разработчиков

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('America/Adak');

// Solution 2
// Use this to get the current date and time in the specified time zone.
$timezone = new DateTimeZone('America/Adak');
// Create a new DateTime object
$date = new DateTime('now', $timezone);
// Print the current date and time
echo $date->format('Y-m-d H:i:s'); // 2023-01-01 00:00:00

python


# Solution 1
# Set the default time zone
from datetime import datetime
# Import the pytz module
import pytz
  
# Create a timezone object
tz = pytz.timezone("America/Adak")
# Get the current time
time_now = datetime.now(tz)
# Format the current time
current_time = time_now.strftime("%H:%M:%S")
  
# Print the current time
print("The current time:", current_time) # The current time: 00:00:00

javascript


/* 
* Solution 1
* Set the default time zone
*/
const date = new Date();
/* 
* Use the toLocaleString() method to get the current date and time in the specified time zone.
*/
const currentTime = date.toLocaleString("en-us", {timeZone: "America/Adak"});
/* 
* Print the current date and time
*/
console.log(currentTime); // 1/1/2023, 12:00:00 AM