What is the PST to EST Converter?
This tool converts a time in Pacific Standard Time (PST) to the equivalent time in Eastern Standard Time (EST). The continental United States spans four main time zones, and the Pacific and Eastern coasts are separated by a fixed 3-hour difference during standard time. When it is 9:00 AM in Los Angeles (PST), it is 12:00 PM in New York (EST).
How to Use It
Enter the hour (0–23, 24-hour clock) and minute of the PST time you want to convert. The calculator adds 3 hours and returns the EST time in 24-hour format. If the conversion crosses midnight, a "next day" note is shown so you know the date has rolled over.
The Formula Explained
The conversion is simply EST = PST + 3 hours. Internally the time is converted to total minutes after midnight, 180 minutes (3 hours) are added, and the result is wrapped within a 24-hour clock. Any whole-day overflow is reported as a day offset.
$$\text{EST} = \left(\left(\text{Hour (PST)} \times 60 + \text{Minute} + 180\right) \bmod 1440\right)$$
Worked example: For 11:30 PM PST (23:30), total minutes = \(23\times60 + 30 = 1410\). Add 180 → 1590 minutes. \(1590 - 1440 = 150\) minutes = 02:30, with a +1 day offset. So 11:30 PM PST = 2:30 AM EST the next day.
FAQ
Is the difference always 3 hours? Yes — Pacific and Eastern time always differ by 3 hours, whether in standard time (PST/EST) or daylight time (PDT/EDT), as long as both zones observe the same daylight rules.
What about Daylight Saving Time? This tool uses the fixed standard-time offset. During DST the abbreviations become PDT and EDT, but the 3-hour gap remains the same.
Why use 24-hour format? It removes AM/PM ambiguity, especially when the conversion crosses midnight into the next day.