I have a JSON file from the Facebook's "Download your data" feature and instead of escaping Unicode characters as their codepoint number, it's escaped just as a sequence of UTF-8 bytes.
For example, the letter á (U+00E1) is escaped in the JSON file as \u00c3\u00a1 instead of \u00e1. 0xC3 0xA1 is UTF-8 encoding for U+00E1.
The json library in Python 3 decodes it as á which corresponds to U+00C3 and U+00A1.
Is there a way to parse such a file correctly (so that I get the letter á) in Python?