Currently i am trying to look for the html entities for all the major currencies , i can easily get for USD , EURO , CAD, AUD and few more but i am having hard time getting entities for all other countries i have Bulgarian Lev (лв) , Chinese Renminbi (¥), Russian Ruble (руб), U.A. Emirates Dirhams (د.إ)
Everytime i enter them in my dropdown they are coming as ? sign , so is there any way around it and yes i am using correct meta charset, just trying to get html entities for them
Thanks
Characters showing up as � in UTF-8 data are an indication that the characters you’re using are not proper UTF-8 ones.
This can happen when pasting UTF-8 characters into a HTML file that is ISO-8859-1 encoded, for example (this can be fixed by choosing the right encoding in the IDE or editor used). Another frequent reason is the use of a database connection that isn’t UTF-8 all the way through.
If you fix that, you should be fine without needing HTML entities.