Documentation
Usage
amountToHangul

amountToHangul

Converts numeric amounts to the Korean reading of the National Institute of Korean Language (opens in a new tab) rules.

For detailed examples, see below.

function amountToHangul(amount: string | number): string;

Examples

amountToHangul('15,201,100'); // '일천오백이십만천백'
amountToHangul('120,030원'); // '일십이만삼십'
amountToHangul('12345.6789'); // '일만이천삼백사십오점육칠팔구'
amountToHangul(15_201_100); // '일천오백이십만천백''

Demo