Skip to main content
Discord Timestamps LogoDiscordTimestamps

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.

Try samples:
Decoded Creation Moment
Tuesday, January 26, 2021 at 6:26:15 AM
UTC: Tue, 26 Jan 2021 06:26:15 GMTAccount Age: 6 years ago
Unix Epoch (Seconds):
1611642375s
Unix Epoch (Milliseconds):
1611642375290ms
ISO-8601 Timestamp:
2021-01-26T06:26:15.290Z
Discord Timestamp Code:
<t:1611642375:R>
Internal 64-Bit Discord Snowflake Architecture
Worker ID (5 bits):0
Process ID (5 bits):10
Sequence Increment (12 bits):20

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.

Bits 22 to 63 (42 bits)

Milliseconds Timestamp

Time elapsed since January 1, 2015 (Discord Epoch: 1420070400000).

Bits 17 to 21 (5 bits)

Internal Worker ID

Identifies which Discord datacenter node generated the ID.

Bits 12 to 16 (5 bits)

Internal Process ID

Identifies the specific server thread or process instance.

Bits 0 to 11 (12 bits)

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.

Open Timestamp Generator

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).