Snowflake ID Decoder
Extract the creation timestamp embedded in a Discord or Twitter/X Snowflake ID.
Snowflake ID Decoder
Runs entirely in your browserPaste an ID and pick its platform — no full valid ID is required, any 64-bit integer works.
What is a Snowflake ID?
A Snowflake ID is a 64-bit unique identifier design originated by Twitter, later adopted (with variations) by Discord, Instagram, and other large-scale platforms.
The top bits encode a millisecond timestamp relative to a platform-specific epoch, so IDs sort chronologically and any client can extract "when was this created" without a database round-trip.
- 64-bit integer, sortable by creation time
- Top 41-42 bits: milliseconds since a platform epoch
- Bottom 22 bits: worker/process ID and per-ms sequence
- Discord epoch: 2015-01-01 · Twitter/X epoch: 2010-11-04
Bit Layout
Shift right by 22 bits, then add the platform's epoch to get the timestamp.
How do I find out when a Discord account or message was created?
Paste the user, message, server, or channel ID into the decoder above with "Discord" selected — the exact creation timestamp is extracted instantly, since Discord IDs are Snowflake IDs with the creation time built in.
Frequently Asked Questions
Explore All Free Developer Tools
UUIDs, QR codes, barcodes, image tools, converters and more — all free, all client-side.