Africa/Nouakchott

Waktu dan tanggal lokal saat ini di zona waktu Africa/Nouakchott.

UTC+00:00

Loading...
Loading...

Profil Zona Waktu

Offset+00:00
Waktu Musim PanasTidak tersedia
Zona Waktu IANAAfrica/Nouakchott

Negara yang menggunakan zona waktu Africa/Nouakchott adalah 🇲🇷 Mauritania.

UTC

Waktu Musim Panas
DST tidak diterapkan

Standar Format Tanggal dan Waktu

Tabel ini menyediakan perbandingan berdampingan berbagai standar format tanggal dan waktu. Setiap baris mewakili standar format yang unik seperti ATOM, COOKIE, ISO, dan RFC, serta lainnya.
Format
Tanggal dan Waktu
ATOM2026-07-20T13:41:36.767+00:00
COOKIEMon, 20 Jul 2026 13:41:36 +0000
HTTPMon, 20 Jul 2026 13:41:36 GMT
ISO2026-07-20T13:41:36.767+00:00
ISO 86012026-07-20T13:41:36.767+00:00
MM-dd-yyyy HH:mm:ss07-20-2026 13:41:36
MongoDB2026-07-20T13:41:36.767Z
MySQL DATETIME2026-07-20 13:41:36
RFC 1036Mon, 20 Jul 26 13:41:36 +0000
RFC 1123Mon, 20 Jul 2026 13:41:36 +0000
RFC 2822Mon, 20 Jul 2026 13:41:36 +0000
RFC 33392026-07-20T13:41:36+0000
RFC 7231Mon, 20 Jul 2026 13:41:36 GMT
RFC 822Mon, 20 Jul 26 13:41:36 +0000
RFC 850Monday, 20-Jul-26 13:41:36 GMT
RSSMon, 20 Jul 2026 13:41:36 +0000
SQL2026-07-20 13:41:36.767 +00:00
SQL Time13:41:36.767 +00:00
UTC2026-07-20T13:41:36.767Z
Unix Epoch1784554896
W3C2026-07-20T13:41:36+00:00
dd-MM-yyyy HH:mm:ss20-07-2026 13:41:36
yyyy-dd-MM HH:mm:ss2026-20-07 13:41:36
yyyy-dd-MM hh:mm:ss a2026-20-07 01:41:36 PM

Zona Waktu Terkait

Tabel berisi daftar zona waktu dengan offset waktu yang sama. Termasuk nama dan singkatan zona waktu.

Ada 37 zona waktu dalam tabel.
Zona Waktu IANA
Nama Offset
Singk.
Africa/AbidjanGreenwich Mean TimeGMT+0
Africa/AccraGreenwich Mean TimeGMT+0
Africa/BamakoGreenwich Mean TimeGMT+0
Africa/BanjulGreenwich Mean TimeGMT+0
Africa/BissauGreenwich Mean TimeGMT+0
Africa/ConakryGreenwich Mean TimeGMT+0
Africa/DakarGreenwich Mean TimeGMT+0
Africa/FreetownGreenwich Mean TimeGMT+0
Africa/LomeGreenwich Mean TimeGMT+0
Africa/MonroviaGreenwich Mean TimeGMT+0
Africa/NouakchottGreenwich Mean TimeGMT+0
Africa/OuagadougouGreenwich Mean TimeGMT+0
Africa/Sao_TomeGreenwich Mean TimeGMT+0
Africa/TimbuktuGreenwich Mean TimeGMT+0
America/DanmarkshavnGreenwich Mean TimeGMT+0
Atlantic/AzoresWaktu Musim Panas AzoresGMT+0
Atlantic/ReykjavikGreenwich Mean TimeGMT+0
Atlantic/St_HelenaGreenwich Mean TimeGMT+0
Etc/GMTWaktu Universal TerkoordinasiUTC
Etc/GMT+0Greenwich Mean TimeGMT+0
Etc/GMT-0Greenwich Mean TimeGMT+0
Etc/GMT0Greenwich Mean TimeGMT+0
Etc/GreenwichGreenwich Mean TimeGMT+0
Etc/UCTWaktu Universal TerkoordinasiUTC
Etc/UTCWaktu Universal TerkoordinasiUTC
Etc/UniversalWaktu Universal TerkoordinasiUTC
Etc/ZuluWaktu Universal TerkoordinasiUTC
GMTUTCUTC
GMT+0Waktu Universal TerkoordinasiUTC
GMT-0Waktu Universal TerkoordinasiUTC
GMT0Waktu Universal TerkoordinasiUTC
GreenwichGreenwich Mean TimeGMT+0
IcelandGreenwich Mean TimeGMT+0
UCTWaktu Universal TerkoordinasiUTC
UTCUTCUTC
UniversalWaktu Universal TerkoordinasiUTC
ZuluWaktu Universal TerkoordinasiUTC

Untuk Pengembang

php


<?php

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

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