I wonder about what can influence/determine how WordPress shows text.
Here is what I have:
Page: <meta charset="UTF-8">
Code in both visual and text in WP is:
You're nice.
Hi - hey
When I look at it in the database (in phpMyAdmin), it's still like in WP. The collation in MySQL is utf8_general_ci.
Yet, when I look into the source code in any browser, I get this:
You’re nice.
Hi – hey
Why is this? What overrides the UTF-8 setting?
I tried different themes, no change.
The settings in WP-Config are:
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', ''); (tried changing this to utf8_general_ci, no help)
Thanks