I'm trying to upload content to a Wordpress database.
The content is in a CSV file, the upload is done through PHPMYADMIN, and I've set the encoding to UTF8. The upload completes, but the content cuts off whenever it encounters and accented character.
For example, if I uploaded a post with the title: "I love Mötley Crüe," the post will appear on the site, but the title will be "I Love M."
To get around this issue, I was wondering if I could do the upload via SSH/Putty--using the same file but setting the encoding to utf8mb4.
Will this different encoding allow characters like ö and ü through? Or should I be considering a different approach altogether?