https://bugs.documentfoundation.org/show_bug.cgi?id=172905
--- Comment #15 from ady <[email protected]> --- Since the OP (Ulrich Windl) has not replied to the question posted in comment 12, I am posting here one of several ways to convert a csv file from iso-8859-1 to UTF-8 on a Windows OS (which is what the OP seems to be using) that supports PowerShell. _ Method A: open the csv file with Notepad, and use "Save As" in order to save it as UTF-8 (with BOM). _ Method B: on a PowerShell prompt, execute (in the same folder in which the file is located): Get-Content .\input.csv | Set-Content -Encoding utf8 output.csv where "input.csv" and "output.csv" are the respective file names. Both methods result in the same exact csv file. -- You are receiving this mail because: You are the assignee for the bug.
