I have a unicode filename that I would like to open. The following code:
cmd = u\'cmd /c \"C:\\\\Pok\\xe9mon.mp3\"\' cmd = cmd.encode(\'utf-8\') subprocess.P
I think windows uses 16-bit characters, not sure if it's UCS2 or UTF16 or something like that. So I guess that it could have an issue with UTF8.