Korean (South Korea) (ko-KR)
Complete reference for the ko-KR locale — live Intl API output, CLDR plural rules, and framework config snippets.
语言环境参考
Korean (South Korea)
语言环境信息
Intl API Live Output
DateTimeFormat
NumberFormat
RelativeTimeFormat
Output for: -3 days ago
ListFormat
Conjunction list: apples, oranges, bananas
CLDR Plural Rules
Categories supported by ko-KR: other
100Framework Config Snippets
// next-intl configuration
// next.config.ts
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
export default withNextIntl({});
// i18n/routing.ts
import { defineRouting } from 'next-intl/routing';
export const routing = defineRouting({
locales: ['ko-KR', 'en'],
defaultLocale: 'en',
});// react-intl configuration
import { IntlProvider } from 'react-intl';
import messages from './messages/ko-KR.json';
function App() {
return (
<IntlProvider locale="ko-KR" messages={messages}>
{/* your app */}
</IntlProvider>
);
}// i18next configuration
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
i18n
.use(initReactI18next)
.init({
lng: 'ko-KR',
fallbackLng: 'en',
resources: {
'ko-KR': {
translation: require('./locales/ko-KR/translation.json'),
},
},
});
export default i18n;Related Locales
Korean (South Korea) is supported by Better I18N
Add ko-KR to your project in seconds — no manual config required.
更多工具
更多免费 i18n 工具
覆盖 i18n 流程其余环节的免费工具:语言区域数据、ICU 消息、文件格式和 hreflang。
ICU Playground
Test ICU message syntax with live preview, multi-locale output, and error explanations
File Converter
Convert between JSON, PO, XLIFF, ARB, YAML, CSV, Android XML, iOS Strings, and Properties
Cost Calculator
Estimate localization costs with side-by-side comparison of human, AI, and Better I18N pricing
Hreflang Generator
Generate and validate hreflang tags for multilingual SEO in HTML, XML sitemap, or HTTP headers