Print Rupee in generated PDF

Hello there!

I’m need to create invoice where I should use Indian rupee. So to show rupee in website I have downloaded fonts from here http://miracleworx.com/rupee/rupee.rar

Then I have added this in my css


@font-face{
font-family: ‘Rupee Foradian’;
src: url(‘../rupee/Rupee_Foradian.eot’);
src: local(‘Rupee Foradian’), url(‘../rupee/Rupee_Foradian.ttf’) format(‘truetype’),
url(‘../rupee/Rupee_Foradian.woff’) format(‘woff’),
url(‘../rupee/Rupee_Foradian.svg’) format(‘svg’);
font-weight: normal;
font-style: normal;
}

.rupee {
font-family: “Rupee Foradian”;
font-size: 18px;
font-style: normal;
font-weight: bold;
text-decoration: none;
}

I’m using this to print rupee sign in website

&lt;span class=&#8221;rupee&#8221;&gt;`</span>

Anything is working perfectly.

But when I’m generating PDF invoice, instead of rupee sign, it’s just printing [`], the sign that I used in span.
I don’t know why it’s like that.