Africa/Abidjan

The current time and date right now in the Africa/Abidjan time zone.

UTC+00:00

Loading...
Loading...

Timezone Profile

Daylight Saving TimeNot available
IANA TimezoneAfrica/Abidjan
Offset+00:00

Countries using the Africa/Abidjan time zone are ๐Ÿ‡ง๐Ÿ‡ซ Burkina Faso, ๐Ÿ‡จ๐Ÿ‡ฎ Ivory Coast, ๐Ÿ‡ฌ๐Ÿ‡ญ Ghana, ๐Ÿ‡ฌ๐Ÿ‡ฒ Gambia, ๐Ÿ‡ฌ๐Ÿ‡ณ Guinea, ๐Ÿ‡ฎ๐Ÿ‡ธ Iceland, ๐Ÿ‡ฒ๐Ÿ‡ฑ Mali, ๐Ÿ‡ฒ๐Ÿ‡ท Mauritania, ๐Ÿ‡ธ๐Ÿ‡ญ Saint Helena, ๐Ÿ‡ธ๐Ÿ‡ฑ Sierra Leone, ๐Ÿ‡ธ๐Ÿ‡ณ Senegal, and ๐Ÿ‡น๐Ÿ‡ฌ Togo.

UTC

Daylight Saving Time
DST is not observed

Date and Time Format Standards

The table provides a side-by-side comparison of different date and time format standards. Each row represents a unique format standard such as ATOM, COOKIE, ISO, and RFC, among others.
Format
Date and Time
ATOM2024-11-21T08:43:51.236+00:00
COOKIEThu, 21 Nov 2024 08:43:51 +0000
HTTPThu, 21 Nov 2024 08:43:51 GMT
ISO2024-11-21T08:43:51.236+00:00
ISO 86012024-11-21T08:43:51.236+00:00
MM-dd-yyyy HH:mm:ss11-21-2024 08:43:51
MongoDB2024-11-21T08:43:51.236Z
MySQL DATETIME2024-11-21 08:43:51
RFC 1036Thu, 21 Nov 24 08:43:51 +0000
RFC 1123Thu, 21 Nov 2024 08:43:51 +0000
RFC 2822Thu, 21 Nov 2024 08:43:51 +0000
RFC 33392024-11-21T08:43:51+0000
RFC 7231Thu, 21 Nov 2024 08:43:51 GMT
RFC 822Thu, 21 Nov 24 08:43:51 +0000
RFC 850Thursday, 21-Nov-24 08:43:51 GMT
RSSThu, 21 Nov 2024 08:43:51 +0000
SQL2024-11-21 08:43:51.236 +00:00
SQL Time08:43:51.236 +00:00
UTC2024-11-21T08:43:51.236Z
Unix Epoch1732178631
W3C2024-11-21T08:43:51+00:00
dd-MM-yyyy HH:mm:ss21-11-2024 08:43:51
yyyy-dd-MM HH:mm:ss2024-21-11 08:43:51
yyyy-dd-MM hh:mm:ss a2024-21-11 08:43:51 AM

Related Time Zones

A table with a list of time zones that have the same time offset. Including name and time zone abbreviations.

There are 53 time zones in the table.
IANA Timezone
Offset Name
Abbr
Africa/AbidjanGreenwich Mean TimeGMT
Africa/AccraGreenwich Mean TimeGMT
Africa/BamakoGreenwich Mean TimeGMT
Africa/BanjulGreenwich Mean TimeGMT
Africa/BissauGreenwich Mean TimeGMT
Africa/ConakryGreenwich Mean TimeGMT
Africa/DakarGreenwich Mean TimeGMT
Africa/FreetownGreenwich Mean TimeGMT
Africa/LomeGreenwich Mean TimeGMT
Africa/MonroviaGreenwich Mean TimeGMT
Africa/NouakchottGreenwich Mean TimeGMT
Africa/OuagadougouGreenwich Mean TimeGMT
Africa/Sao_TomeGreenwich Mean TimeGMT
Africa/TimbuktuGreenwich Mean TimeGMT
America/DanmarkshavnGreenwich Mean TimeGMT
Antarctica/TrollGreenwich Mean TimeGMT
Atlantic/CanaryWestern European Standard TimeGMT
Atlantic/FaeroeWestern European Standard TimeGMT
Atlantic/FaroeWestern European Standard TimeGMT
Atlantic/MadeiraWestern European Standard TimeGMT
Atlantic/ReykjavikGreenwich Mean TimeGMT
Atlantic/St_HelenaGreenwich Mean TimeGMT
EireGreenwich Mean TimeGMT
Etc/GMTCoordinated Universal TimeUTC
Etc/GMT+0Greenwich Mean TimeGMT
Etc/GMT-0Greenwich Mean TimeGMT
Etc/GMT0Greenwich Mean TimeGMT
Etc/GreenwichGreenwich Mean TimeGMT
Etc/UCTCoordinated Universal TimeUTC
Etc/UTCCoordinated Universal TimeUTC
Etc/UniversalCoordinated Universal TimeUTC
Etc/ZuluCoordinated Universal TimeUTC
Europe/BelfastGreenwich Mean TimeGMT
Europe/DublinGreenwich Mean TimeGMT
Europe/GuernseyGreenwich Mean TimeGMT
Europe/Isle_of_ManGreenwich Mean TimeGMT
Europe/JerseyGreenwich Mean TimeGMT
Europe/LisbonWestern European Standard TimeGMT
Europe/LondonGreenwich Mean TimeGMT
GBGreenwich Mean TimeGMT
GB-EireGreenwich Mean TimeGMT
GMTUTCUTC
GMT+0Coordinated Universal TimeUTC
GMT-0Coordinated Universal TimeUTC
GMT0Coordinated Universal TimeUTC
GreenwichGreenwich Mean TimeGMT
IcelandGreenwich Mean TimeGMT
PortugalWestern European Standard TimeGMT
UCTCoordinated Universal TimeUTC
UTCUTCUTC
UniversalCoordinated Universal TimeUTC
WETGMTGMT
ZuluCoordinated Universal TimeUTC

For Developers

php


<?php

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

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