Is it possible to use ReadList to read UTF-8 (or any other) encoded text files using ReadList[..., Word], or is it ASCII-only? If it\'s ASCII-only
ReadList
ReadList[..., Word]
If I leave out Word, this works:
Word
$CharacterEncoding = "UTF-8"; ReadList["UTF8.txt"]
This however is a failure, because the data is not read as strings.
FromCharacterCode[BinaryReadList["UTF8.txt"], "UTF-8"]