Time Precise

IANA Time Zone Database

The standardized time zone system used by computers worldwide

What is IANA?

The IANA Time Zone Database (also called tzdata or zoneinfo) is the gold standard for time zone information. Maintained by the Internet Assigned Numbers Authority (IANA), it contains:

Every major operating system and programming language uses this database.

IANA Time Zone Format

IANA time zones use the format Region/City:

America/New_York Europe/London Asia/Tokyo Australia/Sydney Pacific/Honolulu

Common IANA Time Zones

Why Use IANA?

Using IANA time zones provides:

Programming Example

// JavaScript const now = new Date(); console.log(now.toLocaleTimeString('en-US', { timeZone: 'America/New_York' })); // Python from datetime import datetime import pytz tz = pytz.timezone('America/New_York') print(datetime.now(tz))

Related Links