I am having this:
\u00c3\u0083\u00c2\u00b6
That stands for the german ö
character (ö
in html).
My issue is that I don't know what encoding it is in, I tried several decoding methods (including json_decode and mb_convert_encode('\u00c3\u0083\u00c2\u00b6','HTML-ENTITIES','UTF-8');
) to get to the ö
character, but not a single one worked.
I cannot look up how this was encoded in the first place, due to the fact that this is from a database dump for which the source code is unavailable.
This question is NOT a duplicate of How to decode Unicode escape sequences like "\u00ed" to proper UTF-8 encoded characters?
due to the fact that the charmap does not appear to be any valid UTF-8 or UTF-16 and can therefore not be decoded with any of the methods in the linked question.