Africa/Ouagadougou

A hora local e a data atuais no fuso horário Africa/Ouagadougou.

UTC+00:00

Loading...
Loading...

Perfil do fuso horário

Desfasamento+00:00
Fuso horário IANAAfrica/Ouagadougou
Horário de verãoNão disponível

O principal país que utiliza o fuso horário Africa/Ouagadougou é 🇧🇫 Burquina Faso.

Horário padrão Disponível

UTC

Horário de verão
O horário de verão não é aplicado

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-08-07T21:57:34.311+00:00
COOKIEFri, 07 Aug 2026 21:57:34 +0000
HTTPFri, 07 Aug 2026 21:57:34 GMT
ISO2026-08-07T21:57:34.311+00:00
ISO 86012026-08-07T21:57:34.311+00:00
MM-dd-yyyy HH:mm:ss08-07-2026 21:57:34
MongoDB2026-08-07T21:57:34.311Z
MySQL DATETIME2026-08-07 21:57:34
RFC 1036Fri, 07 Aug 26 21:57:34 +0000
RFC 1123Fri, 07 Aug 2026 21:57:34 +0000
RFC 2822Fri, 07 Aug 2026 21:57:34 +0000
RFC 33392026-08-07T21:57:34+0000
RFC 7231Fri, 07 Aug 2026 21:57:34 GMT
RFC 822Fri, 07 Aug 26 21:57:34 +0000
RFC 850Friday, 07-Aug-26 21:57:34 GMT
RSSFri, 07 Aug 2026 21:57:34 +0000
SQL2026-08-07 21:57:34.311 +00:00
SQL Time21:57:34.311 +00:00
UTC2026-08-07T21:57:34.311Z
Unix Epoch1786139854
W3C2026-08-07T21:57:34+00:00
dd-MM-yyyy HH:mm:ss07-08-2026 21:57:34
yyyy-dd-MM HH:mm:ss2026-07-08 21:57:34
yyyy-dd-MM hh:mm:ss a2026-07-08 09:57:34 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 37 fusos horários na tabela.
Fuso horário IANA
Nome do desfasamento
Abrev.
Africa/AbidjanHora de GreenwichGMT+0
Africa/AccraHora de GreenwichGMT+0
Africa/BamakoHora de GreenwichGMT+0
Africa/BanjulHora de GreenwichGMT+0
Africa/BissauHora de GreenwichGMT+0
Africa/ConakryHora de GreenwichGMT+0
Africa/DakarHora de GreenwichGMT+0
Africa/FreetownHora de GreenwichGMT+0
Africa/LomeHora de GreenwichGMT+0
Africa/MonroviaHora de GreenwichGMT+0
Africa/NouakchottHora de GreenwichGMT+0
Africa/OuagadougouHora de GreenwichGMT+0
Africa/Sao_TomeHora de GreenwichGMT+0
Africa/TimbuktuHora de GreenwichGMT+0
America/DanmarkshavnHora de GreenwichGMT+0
Atlantic/AzoresHora de verão dos AçoresAZOST
Atlantic/ReykjavikHora de GreenwichGMT+0
Atlantic/St_HelenaHora de GreenwichGMT+0
Etc/GMTHora Coordenada UniversalUTC
Etc/GMT+0Hora de GreenwichGMT+0
Etc/GMT-0Hora de GreenwichGMT+0
Etc/GMT0Hora de GreenwichGMT+0
Etc/GreenwichHora de GreenwichGMT+0
Etc/UCTHora Coordenada UniversalUTC
Etc/UTCHora Coordenada UniversalUTC
Etc/UniversalHora Coordenada UniversalUTC
Etc/ZuluHora Coordenada UniversalUTC
GMTUTCUTC
GMT+0Hora Coordenada UniversalUTC
GMT-0Hora Coordenada UniversalUTC
GMT0Hora Coordenada UniversalUTC
GreenwichHora de GreenwichGMT+0
IcelandHora de GreenwichGMT+0
UCTHora Coordenada UniversalUTC
UTCUTCUTC
UniversalHora Coordenada UniversalUTC
ZuluHora Coordenada UniversalUTC

Para programadores

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Africa/Ouagadougou');

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