Home > Software engineering >  Visual Studio 2019 does not properly convert UTF-8 strings to UTF-16 strings in source files without
Visual Studio 2019 does not properly convert UTF-8 strings to UTF-16 strings in source files without

Time:07-24

I have the following source file (encoded in UTF-8 without BOM, displayed fine in the Source Code Editor):

#include <Windows.h>

int main()
{
    MessageBoxW(0, L"Umlaute ÄÖÜ,            
  • Related