I have txt file whose contents are:
u041fu0435u0440u0432u044bu0439_u0438u043du0442u0435u0440u0430u043au0442u0438u0432u043du044bu0439_u0438u043du0442u0435u0440u043du0435u0442_u043au0430u043du0430u043b
How can I read such file to get result like this:
"Первый_интерактивный_интернет_канал"
If I type this:
string str = _T("u041fu0435u0440u0432u044bu0439_u0438u043du0442u0435u0440u0430u043au0442u0438u0432u043du044bu0439_u0438u043du0442u0435u0440u043du0435u0442_u043au0430u043du0430u043b");
then result in str
is good but if I read it from file then it is the same like in file. I guess it is because 'u' becomes 'u'.
Is there simple way to convert uxxxx notation to corresponding symbols in C++?