3

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 Answers2

1

Use Unicode Characters : ₹

  • Our table contain 112 symbols.how can i find character set for all the symbol.Your answer is only for rupee, but i maintain all country currency, how its possible. – Libin Manoharan Aug 28 '18 at 07:54
  • check this out https://www.toptal.com/designers/htmlarrows/currency/ –  Aug 28 '18 at 08:02
1

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

Source : URL

Muhammad Osama
  • 985
  • 8
  • 17