How to use this developer tool
- Paste or type a value in the input area.
- Choose the conversion option when one is available.
- Select Convert RFC 2822 or press Ctrl/Cmd + Enter.
- Review the interpretation and copy or download the result.
Convert an RFC 2822-style email date into ISO 8601, UTC, local time, and Unix timestamps. The parser accepts common numeric offsets and named UTC/GMT zones, then reports the instant the string represents. It also highlights whether a weekday prefix agrees with the calculated date, which helps catch copied or hand-edited mail headers before they reach application code.
The converter resolves the supplied offset to one exact instant and presents several representations of that instant. A weekday mismatch is reported separately because JavaScript date parsing may still accept the string.
Obsolete RFC 822 zone names are inconsistently supported across runtimes. Numeric offsets such as +0900 are the safest input.
Try the sample input, then run the converter. The output panel reports the normalized value and the fields used to derive it.
Sun, 19 Jul 2026 14:30:00 +0900
Parse the mail date, preserve its stated offset, compare any weekday prefix, and format the resulting epoch in ISO, UTC, local, seconds, and milliseconds.
Obsolete RFC 822 zone names are inconsistently supported across runtimes. Numeric offsets such as +0900 are the safest input.
Use the format shown in the sample. The parser rejects empty input and reports malformed values instead of guessing silently.
UTC and offset-aware values represent a fixed instant. Any output labeled local uses the timezone configured in your browser.
The output is copy-ready, but verify it against the date library and runtime used by your application, especially for legacy formats.
Browsers may ship different timezone database versions and may parse non-standard legacy date strings differently. Prefer explicit standard formats.
No. The conversion runs in this page with browser APIs and does not require a network request.
| Value | Meaning |
|---|---|
| UTC | Coordinated Universal Time |
| Unix epoch | 1970-01-01T00:00:00Z |
| ISO 8601 | International date and time notation |