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

Fri, 30 Jan 2026 18:38:52 GMT

Day: Fri

Date: 30 Jan 2026

Time: 18:38:52

Timestamp: 1769798332000

ISO 8601: 2026-01-30T18:38:52.000Z

Parsed Components

{
  "dayName": "Fri",
  "day": "30",
  "month": "Jan",
  "year": "2026",
  "hour": "18",
  "minute": "38",
  "second": "52",
  "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.