Atlantic/Reykjavik

Ora și data locală curente în fusul orar Atlantic/Reykjavik.

UTC+00:00

Loading...
Loading...

Profil de fus orar

Decalaj+00:00
Fus orar IANAAtlantic/Reykjavik
Ora de varăIndisponibil

Țara principală care folosește fusul orar Atlantic/Reykjavik este 🇮🇸 Islanda.

Ora standard Disponibil

UTC

Ora de vară
Ora de vară nu este aplicată

Standarde de format pentru dată și oră

Tabelul oferă o comparație alăturată a diferitelor standarde de format pentru dată și oră. Fiecare rând reprezintă un standard de format distinct, precum ATOM, COOKIE, ISO și RFC, printre altele.
Format
Data și ora
ATOM2026-06-23T07:45:47.025+00:00
COOKIETue, 23 Jun 2026 07:45:47 +0000
HTTPTue, 23 Jun 2026 07:45:47 GMT
ISO2026-06-23T07:45:47.025+00:00
ISO 86012026-06-23T07:45:47.025+00:00
MM-dd-yyyy HH:mm:ss06-23-2026 07:45:47
MongoDB2026-06-23T07:45:47.025Z
MySQL DATETIME2026-06-23 07:45:47
RFC 1036Tue, 23 Jun 26 07:45:47 +0000
RFC 1123Tue, 23 Jun 2026 07:45:47 +0000
RFC 2822Tue, 23 Jun 2026 07:45:47 +0000
RFC 33392026-06-23T07:45:47+0000
RFC 7231Tue, 23 Jun 2026 07:45:47 GMT
RFC 822Tue, 23 Jun 26 07:45:47 +0000
RFC 850Tuesday, 23-Jun-26 07:45:47 GMT
RSSTue, 23 Jun 2026 07:45:47 +0000
SQL2026-06-23 07:45:47.025 +00:00
SQL Time07:45:47.025 +00:00
UTC2026-06-23T07:45:47.025Z
Unix Epoch1782200747
W3C2026-06-23T07:45:47+00:00
dd-MM-yyyy HH:mm:ss23-06-2026 07:45:47
yyyy-dd-MM HH:mm:ss2026-23-06 07:45:47
yyyy-dd-MM hh:mm:ss a2026-23-06 07:45:47 AM

Fusuri orare asociate

Un tabel cu o listă de fusuri orare care au același decalaj. Include denumirea și abrevierile fusului orar.

Sunt 37 de fusuri orare în tabel.
Fus orar IANA
Denumire decalaj
Abbr
Africa/AbidjanOra de GreenwhichGMT
Africa/AccraOra de GreenwhichGMT
Africa/BamakoOra de GreenwhichGMT
Africa/BanjulOra de GreenwhichGMT
Africa/BissauOra de GreenwhichGMT
Africa/ConakryOra de GreenwhichGMT
Africa/DakarOra de GreenwhichGMT
Africa/FreetownOra de GreenwhichGMT
Africa/LomeOra de GreenwhichGMT
Africa/MonroviaOra de GreenwhichGMT
Africa/NouakchottOra de GreenwhichGMT
Africa/OuagadougouOra de GreenwhichGMT
Africa/Sao_TomeOra de GreenwhichGMT
Africa/TimbuktuOra de GreenwhichGMT
America/DanmarkshavnOra de GreenwhichGMT
Atlantic/AzoresOra de vară din AzoreGMT
Atlantic/ReykjavikOra de GreenwhichGMT
Atlantic/St_HelenaOra de GreenwhichGMT
Etc/GMTTimpul universal coordonatUTC
Etc/GMT+0Ora de GreenwhichGMT
Etc/GMT-0Ora de GreenwhichGMT
Etc/GMT0Ora de GreenwhichGMT
Etc/GreenwichOra de GreenwhichGMT
Etc/UCTTimpul universal coordonatUTC
Etc/UTCTimpul universal coordonatUTC
Etc/UniversalTimpul universal coordonatUTC
Etc/ZuluTimpul universal coordonatUTC
GMTUTCUTC
GMT+0Timpul universal coordonatUTC
GMT-0Timpul universal coordonatUTC
GMT0Timpul universal coordonatUTC
GreenwichOra de GreenwhichGMT
IcelandOra de GreenwhichGMT
UCTTimpul universal coordonatUTC
UTCUTCUTC
UniversalTimpul universal coordonatUTC
ZuluTimpul universal coordonatUTC

Pentru dezvoltatori

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Atlantic/Reykjavik');

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