Discord Snowflake Decoder

Convert a Discord ID into its embedded creation time and snowflake components.

No sign-in or external API required.
Creation time
UTC time
Unix timestamp
Worker ID
Process ID
Increment
GUIDE

How it works

Discord uses snowflake IDs for many objects such as users, messages, channels and servers. The high bits contain a timestamp relative to Discord’s epoch, so the creation time can be calculated locally from the numeric ID.

Convert a Discord ID into its embedded creation time and snowflake components.

FAQ

Frequently asked questions

What is a Discord snowflake?+

A Discord snowflake is a unique integer ID that contains a timestamp plus worker, process and increment bits.

Can a snowflake tell me when an account was created?+

For a valid user ID, the embedded timestamp corresponds to when that Discord object was created. The same principle applies to many other Discord objects.

Do you send the Discord ID to a server?+

No. The decoder uses JavaScript BigInt arithmetic in your browser and does not need a Discord API request.