RFC 2822 Date Converter

Parse and generate dates in RFC 2822 format, the standard for email message headers and HTTP protocols.

Example: Mon, 15 Jan 2024 14:30:00 +0000

Result

Mon, 18 May 2026 06:54:28 GMT

Day: Mon

Date: 18 May 2026

Time: 06:54:28

Timestamp: 1779087268000

ISO 8601: 2026-05-18T06:54:28.000Z

Parsed Components

{
  "dayName": "Mon",
  "day": "18",
  "month": "May",
  "year": "2026",
  "hour": "06",
  "minute": "54",
  "second": "28",
  "timezone": "GMT"
}

About RFC 2822

RFC 2822 defines the standard format for email message headers. The date-time format is: Day, DD Mon YYYY HH:MM:SS +ZZZZ. This format is also used in HTTP headers and RSS feeds. It is human-readable while being unambiguous for parsing.

πŸ’‘

Help us improve!

How would you rate the RFC 2822 Date Converter?