JSON-to-XML parser in C ++ successfully parses the json object into its components, but this object instead of Cyrillic contains coded characters like "\ u0410". It is necessary to convert these characters into normal letters for writing to an XML file.
Of course, I have an idea - to build a map characters and analyze the string, but maybe there is some function for converting the string in such a way as not to reinvent the wheel?
"А"and"\u0410"represent the same symbol A (U + 0410). If the parser does not understand \ u0410, then this is not a json parser. - jfs