Europe/Astrakhan

الوقت المحلي الحالي والتاريخ في المنطقة الزمنية Europe/Astrakhan.

UTC+04:00

Loading...
Loading...

ملف تعريف المنطقة الزمنية

الإزاحة+04:00
التوقيت الصيفيغير متاح
المنطقة الزمنية IANAEurope/Astrakhan

الدولة الأساسية التي تستخدم المنطقة الزمنية Europe/Astrakhan هي 🇷🇺 روسيا.

التوقيت القياسي متاح

+04

UTC

التوقيت الصيفي
لا يتم اعتماد التوقيت الصيفي

معايير تنسيق التاريخ والوقت

يوفر الجدول مقارنة جنبًا إلى جنب لمعايير تنسيق التاريخ والوقت المختلفة. يمثل كل صف معيار تنسيق فريد مثل ATOM وCOOKIE وISO وRFC وغيرها.
التنسيق
التاريخ والوقت
ATOM2026-08-07T00:52:43.451+04:00
COOKIEFri, 07 Aug 2026 00:52:43 +0400
HTTPThu, 06 Aug 2026 20:52:43 GMT
ISO2026-08-07T00:52:43.451+04:00
ISO 86012026-08-07T00:52:43.451+04:00
MM-dd-yyyy HH:mm:ss08-07-2026 00:52:43
MongoDB2026-08-06T20:52:43.451Z
MySQL DATETIME2026-08-07 00:52:43
RFC 1036Fri, 07 Aug 26 00:52:43 +0400
RFC 1123Fri, 07 Aug 2026 00:52:43 +0400
RFC 2822Fri, 07 Aug 2026 00:52:43 +0400
RFC 33392026-08-07T00:52:43+0400
RFC 7231Fri, 07 Aug 2026 00:52:43 GMT+4
RFC 822Fri, 07 Aug 26 00:52:43 +0400
RFC 850Friday, 07-Aug-26 00:52:43 GMT+4
RSSFri, 07 Aug 2026 00:52:43 +0400
SQL2026-08-07 00:52:43.451 +04:00
SQL Time00:52:43.451 +04:00
UTC2026-08-06T20:52:43.451Z
Unix Epoch1786049563
W3C2026-08-07T00:52:43+04:00
dd-MM-yyyy HH:mm:ss07-08-2026 00:52:43
yyyy-dd-MM HH:mm:ss2026-07-08 00:52:43
yyyy-dd-MM hh:mm:ss a2026-07-08 12:52:43 AM

مناطق زمنية ذات صلة

جدول يحتوي على قائمة بالمناطق الزمنية التي لها نفس إزاحة الوقت، بما في ذلك الاسم واختصارات المنطقة الزمنية.

توجد 13 منطقة زمنية في الجدول.
المنطقة الزمنية IANA
اسم الإزاحة
الاختصار
Asia/Bakuتوقيت أذربيجان الرسميغرينتش+4
Asia/Dubaiتوقيت الخليجغرينتش+4
Asia/Muscatتوقيت الخليجغرينتش+4
Asia/Tbilisiتوقيت جورجيا الرسميغرينتش+4
Asia/Yerevanتوقيت أرمينيا الرسميغرينتش+4
Etc/GMT-4غرينتش+04:00غرينتش+4
Europe/Astrakhanتوقيت سماراغرينتش+4
Europe/Samaraتوقيت سماراغرينتش+4
Europe/Saratovتوقيت سماراغرينتش+4
Europe/Ulyanovskتوقيت سماراغرينتش+4
Indian/Maheتوقيت سيشلغرينتش+4
Indian/Mauritiusتوقيت موريشيوس الرسميغرينتش+4
Indian/Reunionتوقيت روينيونغرينتش+4

للمطورين

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Europe/Astrakhan');

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