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
—
<t:1783232547:t>—
<t:1783232547:T>—
<t:1783232547:d>—
<t:1783232547:D>—
<t:1783232547:f>—
<t:1783232547:F>—
<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:
:tShort Time
9:41 PM
:TLong Time
9:41:30 PM
:dShort Date
01/01/2026
:DLong Date
January 1, 2026
:fShort Date/Time
January 1, 2026 9:41 PM
:FLong Date/Time
Thursday, January 1, 2026 9:41 PM
:RRelative
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.