🔥 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
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:
- 41 bits: Timestamp (milliseconds since Twitter epoch: Nov 4, 2010)
- 10 bits: Worker ID (identifies which server generated the ID)
- 12 bits: Sequence number (counter for IDs generated in the same millisecond)
- 1 bit: Reserved (always 0)
How to Use the Decoder
Simply paste any Twitter Snowflake ID into the input field above and click "Decode". The tool will extract:
- Exact creation date and time (UTC)
- Unix timestamp in milliseconds
- Worker ID (0-1023)
- Sequence number (0-4095)
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
- Find when tweets were posted from tweet IDs
- Determine Twitter account creation dates from user IDs
- Analyze Twitter activity timelines
- Debug Twitter bot timing issues
- Verify tweet timestamps for research or forensics