UK bank holidays 2030

When is the next UK bank holiday?

Loading…
    DateDayHoliday
    1st JanuaryTuesdayNew Year’s Day
    19th AprilFridayGood Friday
    21st AprilSundayEaster Sunday
    22nd AprilMondayEaster Monday
    6th MayMondayMay Day
    27th MayMondayBank Holiday
    26th AugustMondayBank Holiday
    25th DecemberWednesdayChristmas Day
    26th DecemberThursdayBoxing Day

    Similar Posts

    • UK Bank Holidays 2023

      UK Bank Holidays 2023 When is the next UK bank holiday? Loading… // Show next 5 holidays const upcomingList = document.getElementById(“upcoming-bank-holidays”); const upcoming = events.filter(event => new Date(event.date) >= today).slice(0, 5); upcoming.forEach(event => { const li = document.createElement(“li”); const dateObj = new Date(event.date); const formattedDate = dateObj.toLocaleDateString(“en-GB”, { weekday: “long”, day: “numeric”, month: “long”, year:…

    • UK Bank holidays 2027

      UK Bank Holidays 2027 When is the next UK bank holiday? Loading… // Next 5 holidays const upcomingList = document.getElementById(“upcoming-bank-holidays”); upcomingList.innerHTML = ”; const upcoming = events.filter(event => new Date(event.date) >= today).slice(0, 5); upcoming.forEach(event => { const li = document.createElement(“li”); const dateObj = new Date(event.date); const formattedDate = dateObj.toLocaleDateString(“en-GB”, { weekday: “long”, day: “numeric”, month:…