I got the next CSV file:
1 Café
2 Chair
3 Hallå
4 Dog
(And ~10000 more rows of words of all latin characters)
I'm trying to get this data into a mysql table using phpMyAdmin.
But even though I've set both the database and table encoding to utf8_bin, what I get after import is:
2 Chair
4 Dog
Meaning all non-english characters makes the whole row disappear from the table.
I've also tried utf8_general_ci, which I think doesn't suppose to work, and indeed, it didn't work.
Which encoding should I use? Or, is there something I can do with the file before import that will allow me to import it correctly?