Actually, your .csv
file does not contain only ASCII characters (there's ellipsis characters), but this is not where the problem comes from. The issue here is that the file is not encoded using UTF-8 (the established standard in character encoding today), but rather using Windows 1252. This is visible by opening the .csv
file in an editor other than the Windows Notepad, such as Visual Studio Code:

This also causes the two strings after the erroneous string to not be processed by the engine.
You can fix it by hand (and make sure to save as UTF-8), or use a text editor that can convert between encodings or a conversion utility to fix the issue.