In my website I have used the new rupee sign for indicating the rupees. Following is my code:
As a script i've used " and I've also used following:
<span class="WebRupee">Rs.</span> 116,754.00
As a CSS I have used..
<link rel="stylesheet" type="text/css" href="">
It was working fine... but during last few days it's not working. Even it seems to be that the website is no longer available. I cannot indicate the rupees by the symbol.
Is their any substitution for showing the symbol? Any idea will be appreciated.
In my website I have used the new rupee sign for indicating the rupees. Following is my code:
As a script i've used "http://cdn.webrupee./js and I've also used following:
<span class="WebRupee">Rs.</span> 116,754.00
As a CSS I have used..
<link rel="stylesheet" type="text/css" href="http://cdn.webrupee./font">
It was working fine... but during last few days it's not working. Even it seems to be that the website is no longer available. I cannot indicate the rupees by the symbol.
Is their any substitution for showing the symbol? Any idea will be appreciated.
Share Improve this question edited Aug 11, 2013 at 18:21 Surreal Dreams 26.4k4 gold badges48 silver badges61 bronze badges asked Aug 11, 2013 at 18:18 user1576559user1576559 791 silver badge7 bronze badges 6- 1 Since it's free to use, you could download the js and use it locally. I found it cached here: web.archive/web/20130808084012/http://cdn.webrupee./js – Jayz Commented Aug 11, 2013 at 18:32
- @Jayz, I’m afraid the JavaScript code alone does not suffice, as it seems to use a style sheet that is not available online. – Jukka K. Korpela Commented Aug 11, 2013 at 19:56
- possible duplicate of Indian rupee symbol – Jukka K. Korpela Commented Aug 11, 2013 at 20:00
- There are several older questions on the Indian rupee symbol. Some answers present different ways of using it. You can e.g. enter “₹” as such on a web page (when using a suitable editor and using the UTF-8 encoding), but then the problem is how to make browsers find a font for it. – Jukka K. Korpela Commented Aug 11, 2013 at 20:02
- 1 @JukkaK.Korpela, you can get the stylesheet from the same site, here it is: web.archive/web/20130808052526/http://cdn.webrupee./font – Jayz Commented Aug 12, 2013 at 1:45
3 Answers
Reset to default 7You can use this code for the new Rupee symbol: ₹
It renders like this: ₹
The older Rupee symbol is also available using the same technique, but with a different code: ₨
It renders like this: ₨
No special stylesheet is needed, but your page will need to use the UTF-8 character set. I tried the address you provided for the stylesheet and it's giving a 404 error. That site may not be available anymore.
You can download the plete working css with fonts here:
http://krmaurya./codelibrary/rupee-symbol.zip
To ensure maximum patibility I think you should use FontAwesome. To use FontAwesome just add the following cdn in your head section its free.
<link href="//maxcdn.bootstrapcdn./font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
Now all you have to do is add this for your rupee symbol
<span class="fa fa-inr"></span>
The above code will give you the rupee symbol. And since FontAwesome has lots of cool icon you can use for your website.
For more information you can visit the site http://fontawesome.io/icons/#currency