🔍 Twitter Snowflake ID Decoder

Decode Twitter IDs to extract timestamps, worker IDs, and sequence numbers

🔥 Popular Twitter IDs to Try

1800000000000000000
→ July 10, 2024 at 12:00:00 UTC
1700000000000000000
→ September 13, 2023 at 12:00:00 UTC
1529877576591609861
→ May 26, 2022 at 15:30:00 UTC
💡 Click any ID above to decode it instantly

Decode Twitter Snowflake ID

SNOWFLAKE ID
📅 CREATION DATE
⏱️ UNIX TIMESTAMP
🖥️ WORKER ID
🔢 SEQUENCE

What is a Twitter Snowflake ID Decoder?

A Twitter Snowflake ID decoder is a tool that extracts embedded information from Twitter's 64-bit Snowflake IDs. Every Twitter ID (tweets, users, DMs) contains a timestamp, worker ID, and sequence number that can be decoded to reveal when and where the ID was generated.

Twitter Snowflake ID Structure

Twitter Snowflake IDs are 64-bit integers composed of:

How to Use the Decoder

Simply paste any Twitter Snowflake ID into the input field above and click "Decode". The tool will extract:

Decode Twitter IDs in Code

// JavaScript
const TWITTER_EPOCH = 1288834974657n;
function decodeTwitterId(id) {
  const snowflake = BigInt(id);
  const timestamp = Number((snowflake >> 22n) + TWITTER_EPOCH);
  const workerId = Number((snowflake >> 17n) & 0x1Fn);
  const sequence = Number(snowflake & 0xFFFn);
  return { timestamp, workerId, sequence, date: new Date(timestamp) };
}

Common Use Cases

🔗 Related Snowflake ID Tools

🐦 Twitter Snowflake Decoder 💬 Discord Snowflake Decoder 📸 Instagram Snowflake Decoder

📚 Learn More About Snowflake IDs

How to Decode Tutorial Real ID Examples Snowflake Calculator ID to Timestamp