This symbol for the rupee, the currency of India, was approved by the Union Cabinet on 15 July 2010. How can I display it on a website?

This symbol for the rupee, the currency of India, was approved by the Union Cabinet on 15 July 2010. How can I display it on a website?

You can do it with Intl.NumberFormat native API.
const number = 123456.78;
// India uses thousands/lakh/crore separators
console.log(new Intl.NumberFormat('en-IN', {
style: 'currency',
currency: 'INR'
}).format(number));
It's possible with simple HTML entity code.
.ex{
color:green;
font-size:20px;
}
Example 1 : <span class="ex">₹1200/-</span><br>
Example 2 : <span class="ex">₹3545/-</span><br>
Example 3 : <span class="ex">र134/-</span> *Is not the exact Rupee symbol
Just In Case. If you are binding amount to a ASP.Net label then you can display rupee sign like below
lblAmount.Text = "₹"+ YourDataTable.Rows[rowindex]["AmountColumnName"];