I'm inputting Romanian diacritics in some of my database fields and they are not showing up as expected.
- Romanian diacritics are:
Ă ă Â â Î î Ș ș Ț ț
- The whole line above displays as:
Ă ă Â â Î î Ș ș Ț ț
- When I save a word containing
ã
it displays asã
I'd like to know what collation should I set for the table for this to work
or
just stop using them all together and just save them as normal letters when they are inputed, in which case:
Inputing
- ã would get saved as a
- â would get saved as a
- î would get saved as i
- ș would get saved as s
- ț would get saved as t
Any thoughts? I've tried setting multiple utf-8
as collation for the table, including utf_8_unicode_ci, as well as latin1
but that doesn't solve the problem.
Current collation
set for the tables in question is utf_8_general_ci
Using MysQL.
Please do let me know in a comment if I left anything out and you require more details