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-wordsBasic 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 code | Country | Currency | Notes |
|---|---|---|---|
ka-GE | Georgia | แแแ แ / แแแแ แ | Georgian (Mkhedruli) script |
Related โ
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.