Europe/Isle_of_Man

A hora local e a data atuais no fuso horário Europe/Isle_of_Man.

UTC+01:00

Loading...
Loading...

Perfil do fuso horário

Desfasamento+01:00
Fuso horário IANAEurope/Isle_of_Man
Horário de verãoDisponível

O principal país que utiliza o fuso horário Europe/Isle_of_Man é 🇮🇲 Ilha de Man.

Padrões de formato de data e hora

A tabela fornece uma comparação lado a lado de diferentes padrões de formato de data e hora. Cada linha representa um padrão único, como ATOM, COOKIE, ISO e RFC, entre outros.
Formato
Data e hora
ATOM2026-04-19T13:31:29.968+01:00
COOKIESun, 19 Apr 2026 13:31:29 +0100
HTTPSun, 19 Apr 2026 12:31:29 GMT
ISO2026-04-19T13:31:29.968+01:00
ISO 86012026-04-19T13:31:29.968+01:00
MM-dd-yyyy HH:mm:ss04-19-2026 13:31:29
MongoDB2026-04-19T12:31:29.968Z
MySQL DATETIME2026-04-19 13:31:29
RFC 1036Sun, 19 Apr 26 13:31:29 +0100
RFC 1123Sun, 19 Apr 2026 13:31:29 +0100
RFC 2822Sun, 19 Apr 2026 13:31:29 +0100
RFC 33392026-04-19T13:31:29+0100
RFC 7231Sun, 19 Apr 2026 13:31:29 GMT+1
RFC 822Sun, 19 Apr 26 13:31:29 +0100
RFC 850Sunday, 19-Apr-26 13:31:29 GMT+1
RSSSun, 19 Apr 2026 13:31:29 +0100
SQL2026-04-19 13:31:29.968 +01:00
SQL Time13:31:29.968 +01:00
UTC2026-04-19T12:31:29.968Z
Unix Epoch1776601889
W3C2026-04-19T13:31:29+01:00
dd-MM-yyyy HH:mm:ss19-04-2026 13:31:29
yyyy-dd-MM HH:mm:ss2026-19-04 13:31:29
yyyy-dd-MM hh:mm:ss a2026-19-04 01:31:29 PM

Fusos horários relacionados

Uma tabela com uma lista de fusos horários que têm o mesmo desfasamento. Inclui nome e abreviações de fuso horário.

Existem 32 fusos horários na tabela.
Fuso horário IANA
Nome do desfasamento
Abrev.
Africa/AlgiersHora padrão da Europa CentralCET
Africa/BanguiHora padrão da África OcidentalGMT+1
Africa/BrazzavilleHora padrão da África OcidentalGMT+1
Africa/CasablancaGMT+01:00GMT+1
Africa/DoualaHora padrão da África OcidentalGMT+1
Africa/El_AaiunGMT+01:00GMT+1
Africa/KinshasaHora padrão da África OcidentalGMT+1
Africa/LagosHora padrão da África OcidentalGMT+1
Africa/LibrevilleHora padrão da África OcidentalGMT+1
Africa/LuandaHora padrão da África OcidentalGMT+1
Africa/MalaboHora padrão da África OcidentalGMT+1
Africa/NdjamenaHora padrão da África OcidentalGMT+1
Africa/NiameyHora padrão da África OcidentalGMT+1
Africa/Porto-NovoHora padrão da África OcidentalGMT+1
Africa/TunisHora padrão da Europa CentralCET
Atlantic/CanaryHora de verão da Europa OcidentalWEST
Atlantic/FaeroeHora de verão da Europa OcidentalWEST
Atlantic/FaroeHora de verão da Europa OcidentalWEST
Atlantic/MadeiraHora de verão da Europa OcidentalWEST
EireHora de verão da IrlandaGMT+1
Etc/GMT-1GMT+01:00GMT+1
Europe/BelfastHora de verão BritânicaGMT+1
Europe/DublinHora de verão da IrlandaGMT+1
Europe/GuernseyGMT+01:00GMT+1
Europe/Isle_of_ManGMT+01:00GMT+1
Europe/JerseyGMT+01:00GMT+1
Europe/LisbonHora de verão da Europa OcidentalWEST
Europe/LondonHora de verão BritânicaGMT+1
GBHora de verão BritânicaGMT+1
GB-EireHora de verão BritânicaGMT+1
PortugalHora de verão da Europa OcidentalWEST
WETHora de verão da Europa OcidentalWEST

Para programadores

php


<?php

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

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