Popular Snowflake IDs to Try

🐦 TWITTER ID
1800000000000000000
📅 July 13, 2024
💬 DISCORD ID
1234567890123456789
📅 September 7, 2024
📸 INSTAGRAM ID
3950142972
📅 February 15, 2025

💡 Click any ID to decode it instantly

Convert Snowflake ID to Date

Select platform and enter snowflake ID to see creation date

Creation Date
Unix Timestamp
Time Ago
Worker ID
Sequence Number

Last updated

Platform Comparison

Same number decoded with different platform epochs:

Number: 1529877576591609861

Twitter (epoch 2010): 2022-05-26 ✅ (correct for Twitter)
Discord (epoch 2015): 2063-07-14 ❌ (wrong platform)
Instagram (epoch 2011): 2022-03-xx (different result)

Always select the correct platform when decoding!

Common Use Cases

All conversion happens entirely in your browser. Your Snowflake IDs are never transmitted to any server.

Discord

Epoch: 1420070400000 ms

Date: January 1, 2015, 00:00:00 UTC

Discord's service launch date

Instagram

Epoch: 0 ms

Date: January 1, 1970, 00:00:00 UTC

Uses Unix epoch with custom sharding

Snowflake ID Structure

Every snowflake ID contains three components encoded in 64 bits:

Common Use Cases

Conversion Formula

The mathematical formula to convert a snowflake ID to timestamp:

JavaScript
const snowflakeId = 1382350606417817604n;
const epoch = 1288834974657n; // Twitter epoch
const timestamp = (snowflakeId >> 22n) + epoch;
console.log(Number(timestamp)); // 1618592259657

// Convert to Date
const date = new Date(Number(timestamp));
console.log(date.toISOString()); // 2021-04-16T14:30:59.657Z

Real Example

Input: 1382350606417817604 (Twitter ID)

Output: 1618592259657 ms → April 16, 2021, 2:30:59 PM UTC

Meaning: This tweet was posted on April 16, 2021

Where >> is the right bit-shift operator. This extracts the 41-bit timestamp from the snowflake ID and adds the platform's epoch to get the Unix timestamp in milliseconds.

Why Different Epochs?

Each platform chose their epoch based on when they implemented snowflake IDs. Using a recent epoch (instead of Unix epoch 1970) extends the 41-bit timestamp lifespan. With 41 bits, you get 69 years from the epoch date. Twitter's IDs work until ~2079, Discord's until ~2084.

Frequently Asked Questions

Can I convert snowflake IDs from any platform?

Yes! Our converter supports Twitter, Discord, Instagram, and custom epochs. Just select the correct platform to ensure accurate date conversion.

What if I don't know which platform the ID is from?

Try each platform option. The correct one will show a reasonable date. Twitter IDs typically start with 1-2, Discord with 1-9, and Instagram varies widely.

Can I batch convert multiple IDs?

Use our main Snowflake Decoder which supports batch processing up to 100 IDs at once.

Examples

Example 1: Twitter ID to Date

Input: 1529877576591609861

Platform: Twitter
Epoch:    2010-11-04 01:42:54 UTC

Output:
  Date:     May 26, 2022
  Time:     6:00:00 PM UTC
  Full:     2022-05-26T18:00:00.123Z
  Relative: about 2 years ago

Example 2: Discord ID to Date

Input: 1085000000000000000

Platform: Discord
Epoch:    2015-01-01 00:00:00 UTC

Output:
  Date:     March 14, 2023
  Time:     (approximate)
  Full:     2023-03-14T00:00:00.000Z
  Account age: ~1 year old (as of 2024)

Use case: Discord moderators check account age
to identify potentially suspicious new accounts.

Example 3: Multiple Output Formats

Input: 1700000000000000000 (Twitter)

Output formats:
  ISO 8601:          2023-09-14T09:26:08.000Z
  RFC 2822:          Thu, 14 Sep 2023 09:26:08 +0000
  Unix timestamp:    1694683568
  Unix ms:           1694683568000
  Human readable:    September 14, 2023 at 9:26 AM UTC
  Relative:          about 6 months ago
  Date only:         2023-09-14
  Time only:         09:26:08 UTC

Frequently Asked Questions

Paste the snowflake ID, select the platform (Twitter, Discord, or Instagram), and click Convert. The tool extracts the embedded timestamp and shows the exact creation date.

Twitter/X, Discord, and Instagram use snowflake IDs. Each platform has a different epoch: Twitter (Nov 4, 2010), Discord (Jan 1, 2015), Instagram (Unix epoch).