Alexandria time zone — UTC+03:00 right now (EEST)
Alexandria, Egypt, is currently on EEST (UTC+03:00) — 3 hours ahead of UTC. Use Africa/Cairo in code, never the abbreviation and never a hard-coded offset.
The identifier to put in your code
EEST is a label, not an identifier. Abbreviations are unregistered, they collide across regions, and no date library resolves them reliably. The IANA name carries the full history of this place's offset and daylight-saving rule changes, so code written against it keeps working when a government moves the clocks.
Daylight saving
Africa/Cairo is on EEST (UTC+03:00) — its daylight-saving clock.
next change: Thursday, 29 October 2026, 23:00 local → EET (77 days away, clocks go back 60 minutes)
Computed from the IANA tz database at the moment you loaded this page, not from a date we typed in — if the rules change, this line changes with them.
A timestamp from Alexandria, in every format rendered in this zone · copy any row
| Format | Value | Copy |
|---|---|---|
ISO 8601 (local, with offset) What a timestamp from this zone should look like |
2026-08-13T10:35:13+03:00 | |
RFC 3339 (local) The JSON-API form, offset preserved |
2026-08-13T10:35:13+03:00 | |
ISO 8601 (UTC) The same instant, normalised to UTC |
2026-08-13T07:35:13Z | |
Unix timestamp Identical everywhere — epoch time has no timezone |
1786606513 | |
Unix milliseconds Also zone-independent |
1786606513144 | |
RFC 2822 (local) Email Date: header from this zone |
Thu, 13 Aug 2026 10:35:13 +0300 | |
Date (local) Calendar date here, which can differ from UTC |
2026-08-13 | |
Time (local, 24-hour) Wall-clock time here |
10:35:13 | |
Time (local, 12-hour) Wall-clock time with AM/PM |
10:35:13 AM | |
UTC offset Current offset, including any daylight saving |
+03:00 | |
IANA identifier The only form you should hard-code |
Africa/Cairo | |
ISO week date (local) Year-week-weekday here |
2026-W33-4 |
Get the current time in Alexandria using the IANA name
from datetime import datetime
from zoneinfo import ZoneInfo
now = datetime.now(ZoneInfo("Africa/Cairo"))
print(now.isoformat()) # local time with offset
print(now.tzname()) # current abbreviation
print(int(now.timestamp())) # unix — same number everywhere
const tz = 'Africa/Cairo';
const now = new Date();
console.log(now.toLocaleString('en-GB', { timeZone: tz }));
// ISO 8601 with the zone's offset:
console.log(new Intl.DateTimeFormat('sv-SE', { timeZone: tz,
dateStyle: 'short', timeStyle: 'medium' }).format(now));
loc, err := time.LoadLocation("Africa/Cairo")
if err != nil { log.Fatal(err) }
now := time.Now().In(loc)
fmt.Println(now.Format(time.RFC3339))
import java.time.*;
ZonedDateTime now = ZonedDateTime.now(ZoneId.of("Africa/Cairo"));
System.out.println(now); // with offset
System.out.println(now.toInstant()); // UTC instant
var tz = TimeZoneInfo.FindSystemTimeZoneById("Africa/Cairo");
var now = TimeZoneInfo.ConvertTime(DateTimeOffset.UtcNow, tz);
Console.WriteLine(now.ToString("o"));
// chrono = "0.4", chrono-tz = "0.9"
use chrono::Utc;
use chrono_tz::Tz;
let tz: Tz = "Africa/Cairo".parse().unwrap();
let now = Utc::now().with_timezone(&tz);
println!("{}", now.to_rfc3339());
$now = new DateTimeImmutable('now', new DateTimeZone('Africa/Cairo'));
echo $now->format(DATE_ATOM), PHP_EOL;
SELECT now() AT TIME ZONE 'Africa/Cairo' AS local_time,
extract(epoch FROM now())::bigint AS unix_seconds;
TZ='Africa/Cairo' date +"%Y-%m-%dT%H:%M:%S%z"
TZ='Africa/Cairo' date # human readable
Convert
Nearby
Same zone (Africa/Cairo) — identical offset, always:
Elsewhere in Egypt: