I'm trying to read a file but I can't figure out the character encoding. There are two characters in the file that I know the value of, and the hex value that I see in my hex editor is as follows:
0xCCA9 é
0xCCBB ê
0xCCC1 á
Any ideas what encoding this is?
All english characters are ASCII encoded in the file. I had similar files which were encoded in mac central europe if that's any use, perhaps they have been accidentally encoded more than once.
Edit:
Code to find mappings in Python 2.7: (See Esailija's answer above).
find_mappings(...) is a generator which is given a dictionary of character mappings. It iterates through all available character sets and yields those which match the criteria.
import pkgutil
import encodings
def get_encodings():
false_positives = set(["aliases"])
found = set(name for imp, name, ispkg in pkgutil.iter_modules(encodings.__path__) if not ispkg)
found.difference_update(false_positives)
return found
def find_mappings(maps):
encodings = sorted(get_encodings())
for f in encodings:
for g in encodings:
try:
if all([k.decode(f).encode(g) == v for k,v in maps.items()]):
yield (f,g)
except:
# Couldn't encode/decode
pass
for mapping in find_mappings({'\xCC': '\xC3', '\xBB': '\xAA', '\xA9': '\xA9', '\xC1': '\xA1'}):
print(mapping)