FJT — Fiji Time
FJT is Fiji Time, +12:00, used in Oceania. In code, use Pacific/Fiji rather than the abbreviation.
Fiji Time · Oceania
12:15:36
Thursday, 13 August 2026
- abbreviation denotes
- +12:00
- in force right now
- UTC+12:00 (UTC+12:00)
- use in code
- Pacific/Fiji
- next clock change
- none — fixed offset
Right now this zone is on UTC+12:00, not FJT —
they are the same place at different times of year.
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("Pacific/Fiji"))
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
FJT questions
What does FJT stand for?
FJT is Fiji Time, +12:00, used in Oceania. The IANA zone to use in code is Pacific/Fiji.
What time is it in FJT right now?
Fiji Time: 12:15 on Thursday (UTC+12:00).
Which IANA timezone should I use instead of FJT?
Pacific/Fiji for Fiji 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.
Why does my computer show UTC+12:00 instead of FJT?
Because Pacific/Fiji is currently on UTC+12:00 (UTC+12:00), its daylight-saving variant. FJT (+12:00) applies during the other half of the year. Both names refer to the same place, one hour apart.