My code is basically this:
Dim writer As New System.IO.StreamWriter("C:\file.exe")
writer.Write(Chr(CInt("&H80")))
writer.Close()
I'm writing an executable so UTF-8 is not working well for me. When I write &H80 (80) it gives me (E2 82 AC) which is the UTF-8 representation of '€'. I've tried everything, is there ANY way I can write in ANSI? What should I do?