See one instant in six cities

The table uses your browser’s built-in internationalization data. Discord applies the same instant-per-viewer idea.

CityIANA zoneLocal display

Use three steps

  1. Choose the event’s wall time and source timezone.
  2. Convert that moment to Unix seconds.
  3. Paste <t:SECONDS:F> into the Discord message.

Discord documents that timestamps use seconds and display in each user’s timezone and locale Discord docs.

The text changes; the instant stays fixed

A member in Tokyo may see Friday morning while a member in Los Angeles sees Thursday afternoon. Both displays point to the same event. Date changes near midnight are expected.

Named zones also carry daylight-saving rules. IANA updates its database when governments change boundaries, offsets, or DST policy IANA.

Choose a named source timezone

A fixed offset such as UTC−5 cannot describe every New York date because seasonal rules can change the offset. Choose America/New_York for an event defined by New York local time. Choose UTC when the event itself is defined in UTC.

Troubleshooting

The code appears as plain text before sending

That preview is common. Send a test message in a private channel and inspect the rendered result.

The date is one day off for someone

Their local clock crossed midnight. Compare the underlying Unix number before changing it.

Everyone sees the wrong hour

The source timezone was likely wrong when the wall time became an instant. Generate the code again with the correct named zone.

Bottom line

Convert the source wall time once, publish one Unix instant, and expect readers in different zones to see different clock text.

Open the full Discord Time Converter

Sources and test pages

  1. Discord Developer Documentation — Message Formatting Primary reference for timestamp syntax, seconds, local rendering, and the nine current styles.
  2. IANA — Time Zone Database Primary source for the database that tracks offset and daylight-saving rule changes.
  3. MDN — Intl.DateTimeFormat Reference for locale-sensitive date formatting and named time zones in browsers.