Easter falls on different dates each year, but for these two years it is:

  • Easter Sunday 2026 (Western/Catholic & most Protestant churches): 5 April 2026
  • Easter Sunday 2027 (Western/Catholic & most Protestant churches): 28 March 2027

For completeness, Eastern/Orthodox Easter is on:

  • Orthodox Easter 2026: 12 April 2026
  • Orthodox Easter 2027: 2 May 2027

Here’s a quick HTML table you can copy:

html

<table>
  <thead>
    <tr>
      <th>Year</th>
      <th>Tradition</th>
      <th>Easter Sunday Date</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>2026</td>
      <td>Western (Catholic/Protestant)</td>
      <td>5 April 2026</td>
    </tr>
    <tr>
      <td>2026</td>
      <td>Eastern / Orthodox</td>
      <td>12 April 2026</td>
    </tr>
    <tr>
      <td>2027</td>
      <td>Western (Catholic/Protestant)</td>
      <td>28 March 2027</td>
    </tr>
    <tr>
      <td>2027</td>
      <td>Eastern / Orthodox</td>
      <td>2 May 2027</td>
    </tr>
  </tbody>
</table>