UnicodeDecodeError: 'utf-16-le' codec can't decode bytes in position 618-619: illegal encoding code example
Example: UnicodeDecodeError: 'utf-8' codec can't decode byte invalid start byte
# Use 'ISO-8859-1' instead of "utf-8" for decoding
text = open(fn, 'rb').read().decode('ISO-8859-1')