RFC 2822 Date Converter

Convert any date to RFC 2822 format — the standard for email Date headers.

What is RFC 2822?

RFC 2822 defines the format for email message headers. The Date header uses the pattern: Day, DD Mon YYYY HH:MM:SS +HHMM. Example: Mon, 15 Jul 2024 14:00:00 +0200. It superseded RFC 822 and is itself referenced by RFC 5322 (the current email standard).

Where RFC 2822 Dates Appear

Email headers

Date: header in SMTP/MIME messages

RSS feeds

<pubDate> element in RSS 2.0

HTTP (legacy)

Older servers used RFC 2822 before HTTP standardized IMF-fixdate (now RFC 9110)

Git commits

Author/committer date in raw commit objects

RFC 2822 vs ISO 8601

RFC 2822 is human-readable but harder to parse and sort. ISO 8601 sorts lexicographically and is unambiguous. Use RFC 2822 only where protocols require it (email, RSS). For APIs and databases, prefer ISO 8601.