BST — which one do you mean?
BST means 2 different things, and they are
hours apart. If you received a timestamp labelled BST, the sender's
location decides which of these applies — pick it below.
British Summer Time · Europe
01:15:44
Thursday, 13 August 2026
- abbreviation denotes
- +01:00
- in force right now
- BST (UTC+01:00) · DST
- use in code
- Europe/London
- next clock change
- 25 Oct 2026 01:00 → GMT
Bangladesh Standard Time · Asia
06:15:44
Thursday, 13 August 2026
- abbreviation denotes
- +06:00
- in force right now
- UTC+06:00 (UTC+06:00)
- use in code
- Asia/Dhaka
- next clock change
- none — fixed offset
Right now this zone is on UTC+06:00, not BST —
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("Europe/London"))
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
BST questions
What does BST stand for?
BST has 2 distinct meanings in active use: British Summer Time (+01:00, Europe/London); Bangladesh Standard Time (+06:00, Asia/Dhaka). Which one applies depends entirely on who wrote the timestamp.
What time is it in BST right now?
British Summer Time: 01:15 on Thursday (BST); Bangladesh Standard Time: 06:15 on Thursday (UTC+06:00).
Which IANA timezone should I use instead of BST?
Europe/London for British Summer Time, Asia/Dhaka for Bangladesh 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.