P'yǒngan-bukto, North Korea

Accurate, up-to-date public holidays, bank holidays, and observances in P'yǒngan-bukto, North Korea for 2025 ready to be integrated into your application.

Located in the Northern part of the Korean Peninsula is the Democratic People’s Republic of Korea, commonly referred to as North Korea. This East Asian country’s history was first recorded in the 7th century BC. From 918-1897 two major dynasties ruled the land. With the fall of the Korean Empire, this territory was annexed to Japan in 1910. In 1945, Korea was divided into 2 countries. North Korea was established on September 9, 1948, and became a Communist State. Over 35% of the population of North Korea consists of military and paramilitary personnel.

Want to include this holiday information in your website or application? Get started for free.

Jump to: January | February | March | April | May | June | July | August | September | October | November | December
Date Weekday Name Notes
January 1st Wednesday New Year's Day
January 15th Wednesday Chosongul Day
January 28th Tuesday Seotdal Geumeum
January 29th Wednesday Seollal
January 29th Wednesday Meoseumnal
February 8th Saturday Army Day
February 12th Wednesday Daeboreum
February 14th Friday Generalissimo Day Long weekend.
February 16th Sunday Day of the Shining Star
February 17th Monday Second Day of the Shining Star Long weekend.
March 2nd Sunday Tree Planting Day
March 8th Saturday International Women's Day
March 20th Thursday March Equinox
March 31st Monday Samjinnal Long weekend.
April 15th Tuesday Day of the Sun
April 16th Wednesday Second Day of the Sun
April 17th Thursday Third Day of the Sun
April 21st Monday Kang Pan-sok's Birthday Long weekend.
April 25th Friday Military Foundation Day Long weekend.
May 1st Thursday Labor Day
May 5th Monday Chopail Long weekend.
May 31st Saturday Surinal
June 6th Friday Korean Children's Union Foundation Day Long weekend.
June 19th Thursday Anniversary of Kim Jong Il's commencement of work in the Workers' Party Central Committee
June 21st Saturday June Solstice
July 3rd Thursday Day of the Strategic Forces
July 9th Wednesday Yudu
July 27th Sunday Day of Victory in the Great Fatherland Liberation War
August 15th Friday Liberation Day Long weekend.
August 25th Monday Day of Songun Long weekend.
August 29th Friday Chilseok Long weekend.
September 6th Saturday Baekjung
September 9th Tuesday Day of the Foundation of the Republic
September 22nd Monday September Equinox Long weekend.
October 6th Monday Hangawi Long weekend.
October 10th Friday Party Foundation Day Long weekend.
October 29th Wednesday Jungyangjeol
November 16th Sunday Mother's Day
December 20th Saturday Dongji
December 21st Sunday December Solstice
December 24th Wednesday Kim Jong-suk's Birthday
December 27th Saturday Constitution Day
December 31st Wednesday New Year's Eve
April 5th Sunday Hansik
Public holidays (national, legal, government, civic, etc) are denoted in bold.
Holiday data for far-reaching years is subject to change due to laws and government decrees.
Long weekends are based on non-working days and not Saturday and Sunday explicitly.

We are continuously monitoring for changes to this data to ensure we're providing the most accurate information possible.
If you happen to notice a mistake, please get in touch.
2024Browse all countries2026
To retrieve this list of holidays, simply make a GET request to /v1/holidays:
GET /v1/holidays
Copy
$ curl -G -d country="KP-03" -d year="2025" -d pretty
-d key="__YOUR_API_KEY__"
"https://holidayapi.com/v1/holidays"
import "github.com/joshtronic/go-holidayapi"
hapi := holidayapi.NewV1("__YOUR_API_KEY__")
holidays, err := hapi.Holidays(map[string]interface{}{
  "country": "KP-03",
  "year": "2025",
})
import { HolidayAPI } from 'holidayapi';
const key = '__YOUR_API_KEY__'
const holidayApi = new HolidayAPI({ key });
holidayApi.holidays({
  country: 'KP-03',
  year: '2025',
});
$key = '__YOUR_API_KEY__';
$holiday_api = new \HolidayAPI\Client(['key' => $key]);
$holidays = $holiday_api->holidays([
  'country' => 'KP-03',
  'year' => '2025',
]);
$Body = @{}
$Body.key = "__YOUR_API_KEY__"
$Body.country = "KP-03"
$Body.year = "2025"
$Result = Invoke-RestMethod -Uri $Url -Body $Body
$Result.holidays
import holidayapi
key = '__YOUR_API_KEY__'
hapi = holidayapi.v1(key)
holidays = hapi.holidays({
  'country': 'KP-03',
  'year': '2025',
})
require 'ruby-holidayapi'
key = '__YOUR_API_KEY__'
hapi = HolidayAPI::V1.new(key)
holidays = hapi.holidays({
  'country': 'KP-03',
  'year': '2025',
})