HTML code for INR

前端 未结 12 2573
野趣味
野趣味 2020-12-08 00:36

For pound (£) there is HTML code £.

For INR can you please tell me the HTML code?

12条回答
  •  天涯浪人
    2020-12-08 00:57

    Here is one more example based on Intl.NumberFormat native api.

    var number = 123456.789;
    
    // India uses thousands/lakh/crore separators
    console.log(new Intl.NumberFormat('en-IN', {
      style: 'currency',
      currency: 'INR',
      // limit to six significant digits (Possible values are from 1 to 21).
      maximumSignificantDigits: 6
    }).format(number));

提交回复
热议问题