Pacific/Majuro

Поточний час і дата зараз у часовому поясі Pacific/Majuro.

UTC+12:00

Loading...
Loading...

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

Зсув+12:00
Літній часНе доступно
Часовий пояс IANAPacific/Majuro

Основною країною, яка використовує часовий пояс Pacific/Majuro, є 🇲🇭 Маршаллові Острови.

Стандартний час Доступно

+12

UTC

Літній час
Літній час не застосовується

Стандарти форматування дати та часу

Таблиця надає порівняння різних стандартів форматування дати та часу поруч. Кожен рядок представляє унікальний стандарт формату, такий як ATOM, COOKIE, ISO та RFC серед інших.
Формат
Дата та час
ATOM2025-10-19T23:09:58.185+12:00
COOKIESun, 19 Oct 2025 23:09:58 +1200
HTTPSun, 19 Oct 2025 11:09:58 GMT
ISO2025-10-19T23:09:58.185+12:00
ISO 86012025-10-19T23:09:58.185+12:00
MM-dd-yyyy HH:mm:ss10-19-2025 23:09:58
MongoDB2025-10-19T11:09:58.185Z
MySQL DATETIME2025-10-19 23:09:58
RFC 1036Sun, 19 Oct 25 23:09:58 +1200
RFC 1123Sun, 19 Oct 2025 23:09:58 +1200
RFC 2822Sun, 19 Oct 2025 23:09:58 +1200
RFC 33392025-10-19T23:09:58+1200
RFC 7231Sun, 19 Oct 2025 23:09:58 GMT+12
RFC 822Sun, 19 Oct 25 23:09:58 +1200
RFC 850Sunday, 19-Oct-25 23:09:58 GMT+12
RSSSun, 19 Oct 2025 23:09:58 +1200
SQL2025-10-19 23:09:58.185 +12:00
SQL Time23:09:58.185 +12:00
UTC2025-10-19T11:09:58.185Z
Unix Epoch1760872198
W3C2025-10-19T23:09:58+12:00
dd-MM-yyyy HH:mm:ss19-10-2025 23:09:58
yyyy-dd-MM HH:mm:ss2025-19-10 23:09:58
yyyy-dd-MM hh:mm:ss a2025-19-10 11:09:58 PM

Пов'язані часові пояси

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

В таблиці 13 часових поясів.
Часовий пояс IANA
Назва зсуву
Абр
Asia/Anadyrчас: Анадир, стандартнийGMT+12
Asia/Kamchatkaза камчатським стандартним часомGMT+12
Etc/GMT-12GMT+12:00GMT+12
Kwajaleinза часом на Маршаллових ОстровахGMT+12
Pacific/Fijiза стандартним часом у ФіджіGMT+12
Pacific/Funafutiза часом на островах ТувалуGMT+12
Pacific/Kwajaleinза часом на Маршаллових ОстровахGMT+12
Pacific/Majuroза часом на Маршаллових ОстровахGMT+12
Pacific/Nauruза часом на острові НауруGMT+12
Pacific/Norfolkза літнім часом на острові НорфолкGMT+12
Pacific/Tarawaза часом на островах ГілбертаGMT+12
Pacific/Wakeза часом на острові ВейкGMT+12
Pacific/Wallisза часом на островах Уолліс і ФутунаGMT+12

Для розробників

php


<?php

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

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