China flag

Public Holidays in Hong Kong, China 2028

23 total holidays20 national3 regional

2028 Holiday Calendar — Hong Kong

DateHolidayDayScope
2028-01-01New Year's DaySaturdayNational
2028-01-25Spring Festival EveTuesdayNational
2028-01-26Chinese New YearWednesdayNational
2028-01-27Spring Festival Golden Week HolidayThursdayNational
2028-01-28Spring Festival Golden Week HolidayFridayNational
2028-01-29Spring Festival Golden Week HolidaySaturdayNational
2028-01-30Spring Festival Golden Week HolidaySundayNational
2028-01-31Spring Festival Golden Week HolidayMondayNational
2028-03-08International Women's DayWednesdayNational
2028-04-04Qing Ming JieTuesdayNational
2028-05-01Labour DayMondayNational
2028-05-04Youth DayThursdayNational
2028-05-28Dragon Boat FestivalSundayNational
2028-07-01Hong Kong Special Administrative Region Establishment DaySaturdayHong Kong
2028-10-01National DaySundayNational
2028-10-02National Day Golden Week HolidayMondayNational
2028-10-03Mid-Autumn FestivalTuesdayNational
2028-10-03National Day Golden Week HolidayTuesdayNational
2028-10-04National Day Golden Week HolidayWednesdayNational
2028-10-05National Day Golden Week HolidayThursdayNational
2028-10-06National Day Golden Week HolidayFridayNational
2028-12-25Christmas DayMondayHong Kong
2028-12-26The first weekday after Christmas DayTuesdayHong Kong

Automate Hong Kong holiday data via API

One API call. Filter by region code. Integrate in minutes.

cURL

curl -X GET \
  "https://api.holidays.rest/v1/holidays?country=CN&year=2028" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Hong Kong

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=CN&year=2028",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Hong Kong (ISO code: HK)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("HK")
);
Public Holidays in Hong Kong, China 2028 — Complete List