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:19.249+03:00
COOKIEFri, 24 Apr 2026 01:27:19 +0300
HTTPThu, 23 Apr 2026 22:27:19 GMT
ISO2026-04-24T01:27:19.249+03:00
ISO 86012026-04-24T01:27:19.249+03:00
MM-dd-yyyy HH:mm:ss04-24-2026 01:27:19
MongoDB2026-04-23T22:27:19.249Z
MySQL DATETIME2026-04-24 01:27:19
RFC 1036Fri, 24 Apr 26 01:27:19 +0300
RFC 1123Fri, 24 Apr 2026 01:27:19 +0300
RFC 2822Fri, 24 Apr 2026 01:27:19 +0300
RFC 33392026-04-24T01:27:19+0300
RFC 7231Fri, 24 Apr 2026 01:27:19 GMT+3
RFC 822Fri, 24 Apr 26 01:27:19 +0300
RFC 850Friday, 24-Apr-26 01:27:19 GMT+3
RSSFri, 24 Apr 2026 01:27:19 +0300
SQL2026-04-24 01:27:19.249 +03:00
SQL Time01:27:19.249 +03:00
UTC2026-04-23T22:27:19.249Z
Unix Epoch1776983239
W3C2026-04-24T01:27:19+03:00
dd-MM-yyyy HH:mm:ss24-04-2026 01:27:19
yyyy-dd-MM HH:mm:ss2026-24-04 01:27:19
yyyy-dd-MM hh:mm:ss a2026-24-04 01:27:19 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