Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebRupee is not working

Tags:

javascript

css

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.com/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.com/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.

like image 635
user1576559 Avatar asked Jan 13 '23 16:01

user1576559


2 Answers

You can use this code for the new Rupee symbol: &#8377;

It renders like this: ₹

The older Rupee symbol is also available using the same technique, but with a different code: &#8360;

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.

like image 183
Surreal Dreams Avatar answered Jan 16 '23 01:01

Surreal Dreams


You can download the complete working css with fonts here:

http://krmaurya.com/codelibrary/rupee-symbol.zip

like image 21
Darshan Avatar answered Jan 16 '23 01:01

Darshan