The string "abcu1111u2222u3333" is sent to my input, where "u1111", "u2222" and "u3333" are the utf8 characters (Chinese there, to be exact).
int main() { const char* input = "abсu1111u2222u3333"; wchar_t* out = ???; }
How to convert it? Maybe someone came across?
"abс\u1111\u2222\u3333"
? - avp