i imported fields and data from a utf8mb4_unicode_520_ci table to a table with utf8_general_ci fields
But when I go to print I see all the strange characters (in php). How do I convert these fields optimally?
i found this
UPDATE table SET title = CONVERT (CONVERT (CONVERT (title USING utf8mb4) USING binary) USING UTF8)
EDIT: IT WORK. But if I print like this in php I see the strange characters, I have to use utf8_encode to see everything normal. I wish I could do a good encode directly in mysql instead of using utf8_encode in php in all points of the application