Pacific/Marquesas

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

UTC-09:30

Loading...
Loading...

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

Летнее времяНедоступно
Смещение-09:30
Часовой пояс IANAPacific/Marquesas

Основная страна, использующая часовой пояс Pacific/Marquesas, — 🇵🇫 Французская Полинезия.

Стандартное время Доступно

-0930

UTC

Летнее время
Летнее время не используется

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

Таблица показывает сравнение различных стандартов формата даты и времени. Каждая строка соответствует отдельному стандарту, например ATOM, COOKIE, ISO и RFC, а также другим.
Формат
Дата и время
ATOM2026-09-12T16:24:14.441-09:30
COOKIESat, 12 Sep 2026 16:24:14 -0930
HTTPSun, 13 Sep 2026 01:54:14 GMT
ISO2026-09-12T16:24:14.441-09:30
ISO 86012026-09-12T16:24:14.441-09:30
MM-dd-yyyy HH:mm:ss09-12-2026 16:24:14
MongoDB2026-09-13T01:54:14.441Z
MySQL DATETIME2026-09-12 16:24:14
RFC 1036Sat, 12 Sep 26 16:24:14 -0930
RFC 1123Sat, 12 Sep 2026 16:24:14 -0930
RFC 2822Sat, 12 Sep 2026 16:24:14 -0930
RFC 33392026-09-12T16:24:14-0930
RFC 7231Sat, 12 Sep 2026 16:24:14 GMT-9:30
RFC 822Sat, 12 Sep 26 16:24:14 -0930
RFC 850Saturday, 12-Sep-26 16:24:14 GMT-9:30
RSSSat, 12 Sep 2026 16:24:14 -0930
SQL2026-09-12 16:24:14.441 -09:30
SQL Time16:24:14.441 -09:30
UTC2026-09-13T01:54:14.441Z
Unix Epoch1789264454
W3C2026-09-12T16:24:14-09:30
dd-MM-yyyy HH:mm:ss12-09-2026 16:24:14
yyyy-dd-MM HH:mm:ss2026-12-09 16:24:14
yyyy-dd-MM hh:mm:ss a2026-12-09 04:24:14 PM

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

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Pacific/Marquesas');

// Solution 2
// Use this to get the current date and time in the specified time zone.
$timezone = new DateTimeZone('Pacific/Marquesas');
// 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("Pacific/Marquesas")
# 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: "Pacific/Marquesas"});
/* 
* Print the current date and time
*/
console.log(currentTime); // 1/1/2023, 12:00:00 AM