Skip to content

Finnish ​

Finnish is one of the many supported locales in Faker. It uses the language code fi and is available as fakerFI.

Language data ​

KeyValue
NameFinnish
Local Namesuomi
Languagefi
ScriptLatn
Directionltr

Usage ​

A few commonly localized methods are shown below. Click the refresh button to see more random examples. Not all methods are localized in all locales.

ts
import { fakerFI } from '@faker-js/faker';
// const { fakerFI } = require('@faker-js/faker'); // CJS

// Commonly localized methods:
fakerFI.person.fullName();
fakerFI.location.streetAddress();
fakerFI.location.city();
fakerFI.location.state();
fakerFI.location.zipCode();
fakerFI.phone.number();
fakerFI.commerce.productName();
fakerFI.internet.email();
fakerFI.internet.url();
fakerFI.date.month();
fakerFI.date.weekday();
fakerFI.word.noun();
fakerFI.word.verb();
fakerFI.company.name();

// Non-localized methods work as normal:
fakerFI.number.int();

Released under the MIT License.