Discord Timestamp Tool

Generate Discord timestamp tags in all 7 formats. Discord timestamps automatically display in each user's local timezone — paste the tag directly into any Discord message, embed, or bot response.

Select Date & Time

Short Time

<t:1783232547:t>
Long Time

<t:1783232547:T>
Short Date

<t:1783232547:d>
Long Date

<t:1783232547:D>
Short Date/Time

<t:1783232547:f>
Long Date/Time

<t:1783232547:F>
Relative

<t:1783232547:R>

What are Discord Timestamps?

Discord timestamps are special text tags that automatically convert a Unix timestamp into a human-readable date or time for every user, displayed in their own local timezone. The format is <t:UNIX_TIMESTAMP:FORMAT>. When you send a timestamp tag in Discord, every person who reads the message sees the date and time converted to their own timezone — no manual conversion needed.

Discord Timestamp Format Codes

Discord supports 7 timestamp format styles, each controlled by a single letter suffix:

:t

Short Time

9:41 PM

:T

Long Time

9:41:30 PM

:d

Short Date

01/01/2026

:D

Long Date

January 1, 2026

:f

Short Date/Time

January 1, 2026 9:41 PM

:F

Long Date/Time

Thursday, January 1, 2026 9:41 PM

:R

Relative

2 hours ago

How to Use Timestamps in Discord Bots

In Discord bots, generate the tag programmatically: in JavaScript use <t:${Math.floor(Date.now()/1000)}:R> for a relative timestamp, or in Python use f'<t:{int(time.time())}:R>'. The R (Relative) format is especially popular for showing countdowns, cooldowns, and event start times.