PKT — Pakistan Standard Time

PKT is Pakistan Standard Time, +05:00, used in Asia. In code, use Asia/Karachi rather than the abbreviation.

Pakistan Standard Time · Asia
05:26:13
Thursday, 13 August 2026
abbreviation denotes
+05:00
in force right now
PKT (UTC+05:00)
use in code
Asia/Karachi
next clock change
none — fixed offset

Use the IANA name, not the abbreviation

Python
from datetime import datetime
from zoneinfo import ZoneInfo

# right: an IANA zone carries the full history of rule changes
now = datetime.now(ZoneInfo("Asia/Karachi"))
print(now.isoformat(), now.tzname())

# wrong: an abbreviation is not resolvable, and a hard-coded offset
# silently rots the next time the rules change
# now = datetime.now(timezone(timedelta(hours=...)))  # don't

PKT questions

What does PKT stand for?
PKT is Pakistan Standard Time, +05:00, used in Asia. The IANA zone to use in code is Asia/Karachi.
What time is it in PKT right now?
Pakistan Standard Time: 05:26 on Thursday (PKT).
Which IANA timezone should I use instead of PKT?
Asia/Karachi for Pakistan Standard Time. Date libraries cannot resolve bare abbreviations, and an abbreviation carries no daylight-saving history, so a stored offset silently rots when a government changes the rules.

Other abbreviations

Keyboard shortcuts

cCopy the ISO 8601 timestamp
uCopy the Unix timestamp
/Focus the timezone search
tToggle light and dark
?This help
EscClose