America/Cancun

America/Cancunタイムゾーンの現在の現地時刻と日付。

UTC-05:00

Loading...
Loading...

タイムゾーンプロファイル

IANAタイムゾーンAmerica/Cancun
オフセット-05:00
サマータイム利用不可

タイムゾーンAmerica/Cancunを使用している国は🇲🇽 メキシコです。

UTC

サマータイム
サマータイムは実施されていません

日付と時刻の形式標準

この表では、さまざまな日付と時刻の形式標準を並べて比較できます。各行はATOM、COOKIE、ISO、RFCなどの固有の形式標準を表します。
形式
日付と時刻
ATOM2026-02-09T22:47:55.309-05:00
COOKIEMon, 09 Feb 2026 22:47:55 -0500
HTTPTue, 10 Feb 2026 03:47:55 GMT
ISO2026-02-09T22:47:55.309-05:00
ISO 86012026-02-09T22:47:55.309-05:00
MM-dd-yyyy HH:mm:ss02-09-2026 22:47:55
MongoDB2026-02-10T03:47:55.309Z
MySQL DATETIME2026-02-09 22:47:55
RFC 1036Mon, 09 Feb 26 22:47:55 -0500
RFC 1123Mon, 09 Feb 2026 22:47:55 -0500
RFC 2822Mon, 09 Feb 2026 22:47:55 -0500
RFC 33392026-02-09T22:47:55-0500
RFC 7231Mon, 09 Feb 2026 22:47:55 EST
RFC 822Mon, 09 Feb 26 22:47:55 -0500
RFC 850Monday, 09-Feb-26 22:47:55 EST
RSSMon, 09 Feb 2026 22:47:55 -0500
SQL2026-02-09 22:47:55.309 -05:00
SQL Time22:47:55.309 -05:00
UTC2026-02-10T03:47:55.309Z
Unix Epoch1770695275
W3C2026-02-09T22:47:55-05:00
dd-MM-yyyy HH:mm:ss09-02-2026 22:47:55
yyyy-dd-MM HH:mm:ss2026-09-02 22:47:55
yyyy-dd-MM hh:mm:ss a2026-09-02 10:47:55 PM

関連タイムゾーン

同じ時刻オフセットを持つタイムゾーンの一覧表です。名称とタイムゾーン略称を含みます。

表にはタイムゾーンが47件あります。
IANAタイムゾーン
オフセット名
略称
America/Atikokanアメリカ東部標準時GMT-5
America/Bogotaコロンビア標準時GMT-5
America/Cancunアメリカ東部標準時GMT-5
America/Caymanアメリカ東部標準時GMT-5
America/Coral_Harbourアメリカ東部標準時GMT-5
America/Detroitアメリカ東部標準時GMT-5
America/Eirunepeアクレ標準時GMT-5
America/Fort_Wayneアメリカ東部標準時GMT-5
America/Grand_Turkアメリカ東部標準時GMT-5
America/Guayaquilエクアドル時間GMT-5
America/Havanaキューバ標準時GMT-5
America/Indiana/Indianapolisアメリカ東部標準時GMT-5
America/Indiana/Marengoアメリカ東部標準時GMT-5
America/Indiana/Petersburgアメリカ東部標準時GMT-5
America/Indiana/Vevayアメリカ東部標準時GMT-5
America/Indiana/Vincennesアメリカ東部標準時GMT-5
America/Indiana/Winamacアメリカ東部標準時GMT-5
America/Indianapolisアメリカ東部標準時GMT-5
America/Iqaluitアメリカ東部標準時GMT-5
America/Jamaicaアメリカ東部標準時GMT-5
America/Kentucky/Louisvilleアメリカ東部標準時GMT-5
America/Kentucky/Monticelloアメリカ東部標準時GMT-5
America/Limaペルー標準時GMT-5
America/Louisvilleアメリカ東部標準時GMT-5
America/Montrealアメリカ東部標準時GMT-5
America/Nassauアメリカ東部標準時GMT-5
America/New_Yorkアメリカ東部標準時GMT-5
America/Nipigonアメリカ東部標準時GMT-5
America/Panamaアメリカ東部標準時GMT-5
America/Pangnirtungアメリカ東部標準時GMT-5
America/Port-au-Princeアメリカ東部標準時GMT-5
America/Porto_Acreアクレ標準時GMT-5
America/Rio_Brancoアクレ標準時GMT-5
America/Thunder_Bayアメリカ東部標準時GMT-5
America/Torontoアメリカ東部標準時GMT-5
Brazil/Acreアクレ標準時GMT-5
Canada/Easternアメリカ東部標準時GMT-5
Chile/EasterIslandイースター島夏時間GMT-5
Cubaキューバ標準時GMT-5
ESTアメリカ東部標準時GMT-5
EST5EDTアメリカ東部標準時GMT-5
Etc/GMT+5GMT-05:00GMT-5
Jamaicaアメリカ東部標準時GMT-5
Pacific/Easterイースター島夏時間GMT-5
US/East-Indianaアメリカ東部標準時GMT-5
US/Easternアメリカ東部標準時GMT-5
US/Michiganアメリカ東部標準時GMT-5

開発者向け

php


<?php

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

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