Time Zone Converter

Verified

by Community

Convert times between any time zones, check the current time in different cities, and calculate time differences.

timezonetimeconversionutilities

Time Zone Converter Skill

Convert times between time zones using Python.

Current Time

python3 -c "
from datetime import datetime
from zoneinfo import ZoneInfo
zones = ['US/Eastern', 'US/Pacific', 'Europe/London', 'Asia/Tokyo', 'Asia/Shanghai']
now_utc = datetime.now(ZoneInfo('UTC'))
for tz_name in zones:
    local = now_utc.astimezone(ZoneInfo(tz_name))
    print(f'{tz_name:20s} {local.strftime(\"%H:%M %Z (%a)\")}')
"

Common Zones

US/Eastern, US/Central, US/Pacific, Europe/London, Europe/Berlin, Asia/Tokyo, Asia/Shanghai, Australia/Sydney, UTC