Rupee symbol ( ₹ ) not working in firefox

Viewed 706

I maintain a currency table in mysql. All the symbols are stored in that table. but i try to print symbol in bootstrap print, all other symbols working fine except ₹ .

Currency table

enter image description here

I used this update in our system its worked http://support.microsoft.com/kb/2496898

Our problem is: Any other solution to solve this problem without system update (codeigniter/jquery).

Its billing software. party based billing, every party mapped with currency.its dynamic currency symbol printing. enter image description here

2 Answers

Use Unicode Characters : ₹

Use HTML Entities instead of signs. For INR, use ₹

Source : URL

Related