Convert currency formats and display numbers in words. Enter a number and see the conversion and code example instantly.
Comma Format
NRS 1,00,000
Comma Format
$100,000
In Words
One Lakh
Use the following code to convert a number to a currency format in Nepal.
Javascript
const numberInNepalFormat = new Intl.NumberFormat("en-IN", {
style: "currency",
currency: "NPR"
}).format(number);