Africa/Juba

La fecha y hora locales actuales en la zona horaria Africa/Juba.

UTC+02:00

Loading...
Loading...

Perfil de zona horaria

Desplazamiento+02:00
Horario de veranoNo disponible
Zona horaria IANAAfrica/Juba

El principal país que usa la zona horaria Africa/Juba es 🇸🇸 Sudán del Sur.

UTC

Horario de verano
No se aplica el horario de verano

Estándares de formato de fecha y hora

La tabla ofrece una comparación lado a lado de distintos estándares de formato de fecha y hora. Cada fila representa un estándar único, como ATOM, COOKIE, ISO y RFC, entre otros.
Format
Fecha y hora
ATOM2026-03-24T14:00:39.205+02:00
COOKIETue, 24 Mar 2026 14:00:39 +0200
HTTPTue, 24 Mar 2026 12:00:39 GMT
ISO2026-03-24T14:00:39.205+02:00
ISO 86012026-03-24T14:00:39.205+02:00
MM-dd-yyyy HH:mm:ss03-24-2026 14:00:39
MongoDB2026-03-24T12:00:39.205Z
MySQL DATETIME2026-03-24 14:00:39
RFC 1036Tue, 24 Mar 26 14:00:39 +0200
RFC 1123Tue, 24 Mar 2026 14:00:39 +0200
RFC 2822Tue, 24 Mar 2026 14:00:39 +0200
RFC 33392026-03-24T14:00:39+0200
RFC 7231Tue, 24 Mar 2026 14:00:39 GMT+2
RFC 822Tue, 24 Mar 26 14:00:39 +0200
RFC 850Tuesday, 24-Mar-26 14:00:39 GMT+2
RSSTue, 24 Mar 2026 14:00:39 +0200
SQL2026-03-24 14:00:39.205 +02:00
SQL Time14:00:39.205 +02:00
UTC2026-03-24T12:00:39.205Z
Unix Epoch1774353639
W3C2026-03-24T14:00:39+02:00
dd-MM-yyyy HH:mm:ss24-03-2026 14:00:39
yyyy-dd-MM HH:mm:ss2026-24-03 14:00:39
yyyy-dd-MM hh:mm:ss a2026-24-03 02:00:39 PM

Zonas horarias relacionadas

Tabla con una lista de zonas horarias que tienen el mismo desplazamiento. Incluye nombre y abreviaturas de zona horaria.

Hay 44 zonas horarias en la tabla.
Zona horaria IANA
Nombre del desplazamiento
Abrev.
Africa/Blantyrehora de África centralGMT+2
Africa/Bujumburahora de África centralGMT+2
Africa/Cairohora estándar de Europa orientalEET
Africa/Gaboronehora de África centralGMT+2
Africa/Hararehora de África centralGMT+2
Africa/Johannesburghora de SudáfricaGMT+2
Africa/Jubahora de África centralGMT+2
Africa/Khartoumhora de África centralGMT+2
Africa/Kigalihora de África centralGMT+2
Africa/Lubumbashihora de África centralGMT+2
Africa/Lusakahora de África centralGMT+2
Africa/Maputohora de África centralGMT+2
Africa/Maseruhora de SudáfricaGMT+2
Africa/Mbabanehora de SudáfricaGMT+2
Africa/Tripolihora estándar de Europa orientalEET
Africa/Windhoekhora de África centralGMT+2
Asia/Beiruthora estándar de Europa orientalEET
Asia/FamagustaGMT+02:00GMT+2
Asia/Gazahora estándar de Europa orientalEET
Asia/Hebronhora estándar de Europa orientalEET
Asia/Jerusalemhora estándar de IsraelGMT+2
Asia/Nicosiahora estándar de Europa orientalEET
Asia/Tel_Avivhora estándar de IsraelGMT+2
EEThora estándar de Europa orientalEET
Egypthora estándar de Europa orientalEET
Etc/GMT-2GMT+02:00GMT+2
Europe/Athenshora estándar de Europa orientalEET
Europe/Bucharesthora estándar de Europa orientalEET
Europe/Chisinauhora estándar de Europa orientalEET
Europe/Helsinkihora estándar de Europa orientalEET
Europe/Kaliningradhora estándar de Europa orientalEET
Europe/Kievhora estándar de Europa orientalEET
Europe/Kyivhora estándar de Europa orientalEET
Europe/Mariehamnhora estándar de Europa orientalEET
Europe/Nicosiahora estándar de Europa orientalEET
Europe/Rigahora estándar de Europa orientalEET
Europe/Sofiahora estándar de Europa orientalEET
Europe/Tallinnhora estándar de Europa orientalEET
Europe/Tiraspolhora estándar de Europa orientalEET
Europe/Uzhgorodhora estándar de Europa orientalEET
Europe/Vilniushora estándar de Europa orientalEET
Europe/Zaporozhyehora estándar de Europa orientalEET
Israelhora estándar de IsraelGMT+2
Libyahora estándar de Europa orientalEET

Para desarrolladores

php


<?php

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

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