👤 Discord User ID Snowflake

Decode Discord user IDs & find account ages

Decode Discord User ID

👤 Discord User Account
ACCOUNT AGE
DISCORD USER ID
📅 ACCOUNT CREATED
⏰ CREATION TIME
🌍 UTC TIMESTAMP
WORKER
PROCESS
SEQUENCE

Discord User ID Snowflake Decoder

Decode Discord user ID Snowflakes to find when accounts were created. Every Discord user has a unique Snowflake ID that contains their account creation timestamp.

How to Get Discord User IDs

Step 1: Enable Developer Mode

Settings → Advanced → Toggle "Developer Mode" ON

Step 2: Copy User ID

Right-click any user → Select "Copy ID"

Step 3: Decode

Paste the ID into our decoder to see account age

What You Can Learn

Use Cases

Discord User ID Format

Discord user IDs are 64-bit Snowflake IDs with this structure:

Code Example

// JavaScript
const DISCORD_EPOCH = 1420070400000n;
const userId = 175928847299117063n;
const timestamp = Number((userId >> 22n) + DISCORD_EPOCH);
const date = new Date(timestamp);
console.log(date); // January 3, 2016

🔗 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