UTC-5 is commonly described as UTC-5. UTC-5 is a fixed offset. It is not automatically “Eastern Time”: New York is UTC-5 in standard time and UTC-4 in daylight time.

Use the location when it is available

For code and stored preferences, prefer America/Bogota over an abbreviation or a bare offset. An IANA timezone carries the historical and daylight-saving rules for a region. An offset tells you only the difference from UTC at one moment.

Convert an epoch value

A Unix timestamp is already an instant. To show it in this timezone, keep the numeric value unchanged and format it with the selected IANA name. The clock display may change; the event does not.

const date = new Date(1700000000 * 1000);

const text = new Intl.DateTimeFormat("en-US", {
  dateStyle: "medium",
  timeStyle: "medium",
  timeZone: "America/Bogota",
}).format(date);

Scheduling note

When a meeting or job is defined by local wall-clock time, store the IANA timezone with the schedule. When it is a one-time event, store the resulting UTC instant or Unix timestamp. That distinction keeps daylight-saving changes from becoming surprise reschedules.

Frequent questions:

Q: What time is it in UTC-5 right now?
A: The live UTC-5 clock at the top of this page updates every second. North American Eastern Time matches UTC-5 only during winter (roughly November to mid-March); outside that window the same region is UTC-4.
Q: Is UTC-5 the same as EST?
A: EST (Eastern Standard Time) is UTC-5, but only during winter in the US and Canada. From mid-March to early November the same region shifts to EDT (UTC-4). For a year-round UTC-5 anchor use America/Bogota or America/Lima.
Q: Is UTC-5 the same as GMT-5?
A: Yes — both mean 5 hours behind the zero meridian and are interchangeable in everyday usage. In code, prefer UTC.
Q: How do I convert UTC-5 to a Unix timestamp?
A: Add 5 hours to the wall-clock time, then take the seconds since 1970-01-01 00:00 UTC. See the code examples above for one-liners.
Q: Which countries use UTC-5 year-round?
A: Colombia, Peru, Ecuador, Panama, Jamaica, Cayman Islands, Mexico's Quintana Roo, and parts of Brazil (Acre) all stay on UTC-5 year-round. Unlike Eastern Time in the US, none of them observe daylight saving.