In my database I store some html code (from CKEditor), and I would like to be able to check these values in PhpMyAdmin.
There is one small problem : the HTML is written in french so there are a lot ar é: or other kind of html characters that make the values hard to read.
I know there are settings to avoid CKEditor replacing the characters with é:, but I do not want to change anything in the code or configuration tight now.
Is there any MySQL command that would allow to display the text correctly?
Note : doing a str_replace or kind is not wanted.
Edit : For exemple for an element stored as follow :
<div>
é:lé:phant
</div>
I would like to read in my result column :
<div>
éléphant
</div>