🔍 Convert Discord ID to Timestamp
Paste any Discord user ID, message ID, server ID, or channel ID to decode its timestamp
Convert Discord user IDs, message IDs, server IDs to exact timestamps instantly
Paste any Discord user ID, message ID, server ID, or channel ID to decode its timestamp
Converting a Discord ID to a timestamp is straightforward with our tool. Discord uses snowflake IDs for all objects (users, messages, servers, channels), and each ID contains an embedded timestamp showing exactly when it was created. Simply paste the ID and click convert to see the exact creation date and time.
Discord snowflake IDs are 64-bit integers where the first 41 bits encode the timestamp in milliseconds since Discord's epoch (January 1, 2015, 00:00:00 UTC). By right-shifting the ID by 22 bits and adding the epoch, we recover the original Unix timestamp.
Find when Discord accounts were created. Right-click any user profile and select Copy ID to get their user ID.
Determine exactly when messages were sent. Right-click any message and select Copy ID.
See when Discord servers (guilds) were created. Right-click the server icon and select Copy ID.
Find channel creation dates. Right-click any channel name and select Copy ID.
Check when roles were created. Right-click roles in server settings to copy their IDs.
See when custom emojis were added. Right-click custom emojis to copy their IDs.
Every Discord snowflake ID contains three components encoded in 64 bits:
The mathematical formula to convert a Discord ID to timestamp:
timestamp_ms = (discord_id >> 22) + 1420070400000
Where 1420070400000 is Discord's epoch in Unix milliseconds. The >> operator right-shifts the ID by 22 bits to extract the timestamp portion.
Discord adopted Twitter's snowflake ID format because it's perfect for distributed systems. Benefits include:
Yes! The timestamp is encoded in the ID itself, so even if the user account is deleted or the message is removed, you can still decode when it was originally created.
No special permissions needed. Any Discord user can enable Developer Mode and copy IDs from any object they can see.
Yes, timestamps are accurate to the millisecond. They represent the exact moment Discord's servers created the ID.
You can convert any ID created after January 1, 2015, when Discord launched. IDs before this date don't exist as Discord started in 2015.