Is there a Chrome extension to solve the accented characters wrong encoding issue?

0

By the "accented char wrong encoding issue" I mean the problem that sometimes on blogs "é" become "é", and similar problem for other accented chars.

I knew that one of the reasons is some wrong setting of DB_CHARSET of the database. However I'm thinking, is there a Chrome extension that solves the problem from the client side. For example it may "detects" bad character combinations like "é", and then, either simply replace it by "é", or just do some encoding and decoding like the following:

If the text is

L'hypothèse de Riemann, après qu'on eut perdu l'espoir de la démontrer par les méthodes de la théorie des fonctions, nous apparaît aujourd'hui sous un jour nouveau, qui la montre inséparable de la conjecture d'Artin sur les fonctions L, ces deux problèmes étant deux aspects d'une même question arithmético-algébrique, où l'étude simultanée de toutes les extensions cyclotomiques d'un corps de nombres donné jouera sans doute le rôle décisif.

then by doing .encode("Windows-1252").decode("utf-8") it becomes

L'hypothèse de Riemann, après qu'on eut perdu l'espoir de la démontrer par les méthodes de la théorie des fonctions, nous apparaît aujourd'hui sous un jour nouveau, qui la montre inséparable de la conjecture d'Artin sur les fonctions L, ces deux problèmes étant deux aspects d'une même question arithmético-algébrique, où l'étude simultanée de toutes les extensions cyclotomiques d'un corps de nombres donné jouera sans doute le rôle décisif.

h__

Posted 2016-10-19T17:05:01.610

Reputation: 255

Not sure about an extension but you can click the menu icon on the right side of the adress bar, then select "More Tools" then "Eoncoding", in there you can change the encoding used to view your pages – Chico3001 – 2016-10-19T17:34:55.513

It certainly a server side problem. Namely the server saved the information in one encoding and sent it in another. I'm wondering if there is a way to detect this and solve it from client side. If you don't get what I'm saying, search for ã© instead of é – h__ – 2016-10-20T00:37:36.273

No answers