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
- Tweet IDs - Find when tweets were posted
- User IDs - Discover account creation dates
- Direct Message IDs - See message timestamps
- Media IDs - Check when media was uploaded
- Any Twitter Snowflake ID from November 2010 onwards
Use Cases
- Verify tweet authenticity by checking timestamps
- Analyze Twitter account ages
- Build chronological timelines
- Debug Twitter API integrations
- Research social media trends
- Track content publication patterns
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