Skip to content

Georgian Number to Words in JavaScript (ka-GE) โ€‹

Use ka-GE when your application needs Georgian number words for invoicing, checkout flows, or legal documents that print totals in full words.

Locale codes: ka-GE ยท Numbering system: Short scale ยท Currency: แƒšแƒแƒ แƒ˜ (Lari) / แƒ—แƒ”แƒ—แƒ แƒ˜ (Tetri) ยท Script: Georgian (Mkhedruli)

Install โ€‹

bash
npm install to-words

Basic Conversion โ€‹

js
import { ToWords } from 'to-words';

const tw = new ToWords({ localeCode: 'ka-GE' });

tw.convert(100);
tw.convert(1000);
tw.convert(1000000);

Currency - Lari / Tetri โ€‹

js
tw.convert(1234.56, { currency: true });
tw.convert('500.00', { currency: true, includeZeroFractional: true });

Ordinal Numbers โ€‹

js
tw.toOrdinal(1);
tw.toOrdinal(10);
tw.toOrdinal(100);

Tree-shakeable (single-locale) import โ€‹

js
import { toWords, toCurrency, toOrdinal } from 'to-words/ka-GE';

toWords(1000);
toCurrency(999.99);

Locale Codes โ€‹

Locale codeCountryCurrencyNotes
ka-GEGeorgiaแƒšแƒแƒ แƒ˜ / แƒ—แƒ”แƒ—แƒ แƒ˜Georgian (Mkhedruli) script

FAQ โ€‹

Q: Which locale code should I use for Georgian number-to-words output? Use ka-GE.

Q: Does to-words output Georgian in the Mkhedruli script? Yes. ka-GE produces output in the Georgian Mkhedruli script.

Released under the MIT License.