Discord Snowflake to Timestamp Decoder
Discover the exact creation date, account age, and Unix epoch time of any Discord user, server, channel, or message from its 64-bit Snowflake ID.
Discord Snowflake to Timestamp Decoder
Decode the exact creation date, Unix timestamp, and entity age from any Discord ID.
How Discord Snowflake IDs Work
Unlike traditional auto-incrementing database identifiers (1, 2, 3), Discord uses distributed 64-bit integers called Snowflakes. This architecture guarantees that every ID created across Discord global server clusters is guaranteed unique without requiring centralized database locks.
Because the millisecond timestamp occupies the most significant 42 bits of the ID, all Discord IDs are naturally time-sorted. The oldest entities have smaller numbers, and newer accounts have larger numbers.
Milliseconds Timestamp
Time elapsed since January 1, 2015 (Discord Epoch: 1420070400000).
Internal Worker ID
Identifies which Discord datacenter node generated the ID.
Internal Process ID
Identifies the specific server thread or process instance.
Sequence Increment
Counts IDs generated within the same millisecond (up to 4,096 IDs/ms).
Create Auto-Adjusting Timestamps
Generate countdowns and dynamic date badges for server announcements.
Frequently Asked Questions
Frequently Asked Questions
A Discord Snowflake is a unique 64-bit integer assigned to every entity in Discord (users, servers, roles, channels, emojis, and messages). Because Discord IDs are based on Twitter's Snowflake format, the first 42 bits represent the number of milliseconds since the Discord Epoch (January 1, 2015 UTC).