I came up with the weird situation with my database. My site is already in production and there are lots of data. I need to export CSV file for the client and give them CSV file. I am using my database export button to export my data in CSV file.
My Problem While exporting CSV file the polish characters are the unreadable character like ą,ć,ó,ś.Means these characters are changed to an unreadable character like "?". Are lots of data so is impossible to change in CSV file manually.
Mistake I mistakenly set my character set "latin1" and collation "latin1_swedish_ci".
Question Is it possible to get back this unreadable character into the readable format without losing these data?
I try to googled and try something like https://nicj.net/mysql-converting-an-incorrect-latin1-column-to-utf8/ but no luck.
Any solution? Thanks in advance.