I use the scripting method

[VBA]
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.OpenTextFile(path, 1, x)
[/VBA]

for reading from a text file which is in the utf-8 charset. Whichever of the three values {0, -1, -2} I use for x above, the characters are not displayed propely (I use the text from the file for writing into cells).

What can I do about it?

Antonin