I have problems with encoding saved incorrectly in the database, so my strings that I was saving to MySQL db are broken now.
Example:
1)
In the database it is saved like:
H²Flow™
But it should be:
H²FLOW™
2)
In the database it is saved like:
Ægir Homme
But it should be:
ÆGIR Homme
Does anyone have some suggestions on how can I fix the existing records? I have over 10000 records that have these problems, so I would like to avoid manual editing.
The encoding in my database table is utf8
and collation is utf8_general_ci
.
I am using PHP, and any suggestion is appreciated.