📅 Twitter Snowflake to Date

Convert Twitter IDs to dates instantly

Convert Twitter Snowflake to Date

CREATED ON
TWITTER SNOWFLAKE ID
📅 FULL DATE
⏰ TIME (LOCAL)
🌍 TIME (UTC)
📊 UNIX TIMESTAMP

Twitter Snowflake to Date Converter

Convert Twitter Snowflake IDs to dates to find when tweets were posted or accounts were created. Every Twitter ID contains an embedded timestamp that can be extracted and converted to a human-readable date.

How Twitter Snowflake to Date Works

Twitter Snowflake IDs are 64-bit integers where the first 41 bits encode a timestamp in milliseconds since Twitter's epoch (November 4, 2010). Our converter extracts these bits and adds the epoch to get the exact creation date.

What You Can Convert

Use Cases

Code Example

// JavaScript
const TWITTER_EPOCH = 1288834974657n;
const id = 1382350606417817604n;
const timestamp = Number((id >> 22n) + TWITTER_EPOCH);
const date = new Date(timestamp);
console.log(date); // April 18, 2021

🔗 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