Social Media Timestamp Converter
Social platforms expose timestamps in platform-specific forms: Facebook (ISO 8601 with offset), X/Twitter (ISO 8601 UTC), Discord (snowflake IDs + `t` markdown) and their display strings. API integrations must parse and render these exactly.
This converter renders your date-time in each platform's form — including the Discord snowflake ID and timestamp markdown (`<t:1786624200:F>`) — for social API development.
Social Media Timestamp Converter Quick Reference
| Format | Pattern / Description | Example 1 | Example 2 |
|---|---|---|---|
| API Format | 2026-08-13T14:30:00Z | 2026-01-01T00:00:00Z | |
| Twitter / X | API Format | Thu Aug 13 14:30:00 +0000 2026 | Thu Jan 01 00:00:00 +0000 2026 |
| Discord Display | <t:timestamp:F> | <t:1786631400:F> | <t:1767225600:F> |
| Discord Snowflake | ID generated from time | 1537468268544000000 | 1456074443980800000 |
* Examples are rendered in UTC for the fixed sample instants above.
When to Use Social Media Timestamp
Social API integration
Verify the timestamp strings returned by the Facebook Graph, X API and Discord API against your parsers.
Discord bot development
Generate Discord snowflakes and `<t:...>` markdown for embeds, scheduling and message pinning.
Content scheduling tools
Convert publish times to each platform's required format when building a cross-posting scheduler.
Frequently Asked Questions
What is the Facebook timestamp format?
ISO 8601 with offset, e.g. `2026-08-13T14:30:00+0000`, returned by the Graph API for post `created_time`.
What is the X/Twitter timestamp format?
ISO 8601 UTC: `2026-08-13T14:30:00.000Z` (with milliseconds) in the v2 API, or `Thu Aug 13 14:30:00 +0000 2026` in legacy payloads.
What is Discord timestamp markdown?
`<t:UNIX_EPOCH:STYLE>` where style is `t`/`T`/`d`/`D`/`f`/`F`/`R` — e.g. `<t:1786624200:f>` renders as a localized relative time.
What is the difference between Facebook time and UTC?
Facebook returns localized offset timestamps (`+0000` for UTC accounts); X/Discord use pure UTC. Normalize everything to UTC before comparing.
Related Time Format Converters
All Format Guides
Need to Convert Between All Formats?
Use the main Time Format Converter for instant conversion across 100+ formats — epoch, ISO 8601, RFC 3339, SQL datetime, military time and more in one click.
Open Time Format Converter