europe/moscow

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

UTC+03:00

Loading...
Loading...

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

IANAタイムゾーンeurope/moscow
オフセット+03:00
サマータイム利用不可

タイムゾーンeurope/moscowを使用している国は🇷🇺 ロシアです。

UTC

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

日付と時刻の形式標準

この表では、さまざまな日付と時刻の形式標準を並べて比較できます。各行はATOM、COOKIE、ISO、RFCなどの固有の形式標準を表します。
形式
日付と時刻
ATOM2026-04-24T01:27:25.592+03:00
COOKIEFri, 24 Apr 2026 01:27:25 +0300
HTTPThu, 23 Apr 2026 22:27:25 GMT
ISO2026-04-24T01:27:25.592+03:00
ISO 86012026-04-24T01:27:25.592+03:00
MM-dd-yyyy HH:mm:ss04-24-2026 01:27:25
MongoDB2026-04-23T22:27:25.592Z
MySQL DATETIME2026-04-24 01:27:25
RFC 1036Fri, 24 Apr 26 01:27:25 +0300
RFC 1123Fri, 24 Apr 2026 01:27:25 +0300
RFC 2822Fri, 24 Apr 2026 01:27:25 +0300
RFC 33392026-04-24T01:27:25+0300
RFC 7231Fri, 24 Apr 2026 01:27:25 GMT+3
RFC 822Fri, 24 Apr 26 01:27:25 +0300
RFC 850Friday, 24-Apr-26 01:27:25 GMT+3
RSSFri, 24 Apr 2026 01:27:25 +0300
SQL2026-04-24 01:27:25.592 +03:00
SQL Time01:27:25.592 +03:00
UTC2026-04-23T22:27:25.592Z
Unix Epoch1776983245
W3C2026-04-24T01:27:25+03:00
dd-MM-yyyy HH:mm:ss24-04-2026 01:27:25
yyyy-dd-MM HH:mm:ss2026-24-04 01:27:25
yyyy-dd-MM hh:mm:ss a2026-24-04 01:27:25 AM

関連タイムゾーン

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

表にはタイムゾーンが56件あります。
IANAタイムゾーン
オフセット名
略称
Africa/Addis_Ababa東アフリカ時間GMT+3
Africa/Asmara東アフリカ時間GMT+3
Africa/Asmera東アフリカ時間GMT+3
Africa/Cairo東ヨーロッパ夏時間GMT+3
Africa/Dar_es_Salaam東アフリカ時間GMT+3
Africa/Djibouti東アフリカ時間GMT+3
Africa/Kampala東アフリカ時間GMT+3
Africa/Mogadishu東アフリカ時間GMT+3
Africa/Nairobi東アフリカ時間GMT+3
Antarctica/Syowa昭和基地時間GMT+3
Asia/Adenアラビア標準時GMT+3
Asia/AmmanGMT+03:00GMT+3
Asia/Baghdadアラビア標準時GMT+3
Asia/Bahrainアラビア標準時GMT+3
Asia/Beirut東ヨーロッパ夏時間GMT+3
Asia/DamascusGMT+03:00GMT+3
Asia/FamagustaGMT+03:00GMT+3
Asia/Gaza東ヨーロッパ夏時間GMT+3
Asia/Hebron東ヨーロッパ夏時間GMT+3
Asia/IstanbulGMT+03:00GMT+3
Asia/Jerusalemイスラエル夏時間GMT+3
Asia/Kuwaitアラビア標準時GMT+3
Asia/Nicosia東ヨーロッパ夏時間GMT+3
Asia/Qatarアラビア標準時GMT+3
Asia/Riyadhアラビア標準時GMT+3
Asia/Tel_Avivイスラエル夏時間GMT+3
EET東ヨーロッパ夏時間GMT+3
Egypt東ヨーロッパ夏時間GMT+3
Etc/GMT-3GMT+03:00GMT+3
Europe/Athens東ヨーロッパ夏時間GMT+3
Europe/Bucharest東ヨーロッパ夏時間GMT+3
Europe/Chisinau東ヨーロッパ夏時間GMT+3
Europe/Helsinki東ヨーロッパ夏時間GMT+3
Europe/IstanbulGMT+03:00GMT+3
Europe/Kiev東ヨーロッパ夏時間GMT+3
Europe/KirovGMT+03:00GMT+3
Europe/Kyiv東ヨーロッパ夏時間GMT+3
Europe/Mariehamn東ヨーロッパ夏時間GMT+3
Europe/Minskモスクワ標準時GMT+3
Europe/Moscowモスクワ標準時GMT+3
Europe/Nicosia東ヨーロッパ夏時間GMT+3
Europe/Riga東ヨーロッパ夏時間GMT+3
Europe/Simferopolモスクワ標準時GMT+3
Europe/Sofia東ヨーロッパ夏時間GMT+3
Europe/Tallinn東ヨーロッパ夏時間GMT+3
Europe/Tiraspol東ヨーロッパ夏時間GMT+3
Europe/Uzhgorod東ヨーロッパ夏時間GMT+3
Europe/Vilnius東ヨーロッパ夏時間GMT+3
Europe/Volgogradボルゴグラード標準時GMT+3
Europe/Zaporozhye東ヨーロッパ夏時間GMT+3
Indian/Antananarivo東アフリカ時間GMT+3
Indian/Comoro東アフリカ時間GMT+3
Indian/Mayotte東アフリカ時間GMT+3
Israelイスラエル夏時間GMT+3
TurkeyGMT+03:00GMT+3
W-SUモスクワ標準時GMT+3

開発者向け

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('europe/moscow');

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