Korean
Korean is one of the many supported locales in Faker. It uses the language code ko and is available as fakerKO.
Language data
| Key | Value |
|---|---|
| Name | Korean |
| Local Name | 한국어 |
| Language | ko |
| Script | Kore |
| Direction | ltr |
Usage
A few commonly localized methods are shown below. Reload this page to see more random examples. Not all methods are localized in all locales.
ts
import { fakerKO } from '@faker-js/faker';
// const { fakerKO } = require('@faker-js/faker'); // CJS
// Commonly localized methods:
fakerKO.person.fullName();
fakerKO.location.streetAddress();
fakerKO.location.city();
fakerKO.location.state();
fakerKO.location.zipCode();
fakerKO.phone.number();
fakerKO.commerce.productName();
fakerKO.internet.email();
fakerKO.internet.url();
fakerKO.date.month();
fakerKO.date.weekday();
fakerKO.word.noun();
fakerKO.word.verb();
fakerKO.company.name();
// Non-localized methods work as normal:
fakerKO.number.int();