Russian
Russian is one of the many supported locales in Faker. It uses the language code ru and is available as fakerRU.
Language data
| Key | Value |
|---|---|
| Name | Russian |
| Local Name | Русский |
| Language | ru |
| Script | Cyrl |
| 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 { fakerRU } from '@faker-js/faker';
// const { fakerRU } = require('@faker-js/faker'); // CJS
// Commonly localized methods:
fakerRU.person.fullName();
fakerRU.location.streetAddress();
fakerRU.location.city();
fakerRU.location.state();
fakerRU.location.zipCode();
fakerRU.phone.number();
fakerRU.commerce.productName();
fakerRU.internet.email();
fakerRU.internet.url();
fakerRU.date.month();
fakerRU.date.weekday();
fakerRU.word.noun();
fakerRU.word.verb();
fakerRU.company.name();
// Non-localized methods work as normal:
fakerRU.number.int();