I have an array of approximately 400 UTF-8 bytes. How can I display the corresponding text? It almost certainly contains several emojis, along with ASCII.
Platform is Windows with Visual C++, but I can switch to macOS or Linux if necessary. Happy to use a 3rd party library too.
Clarification: It's a console application, so I'd like to display the result in a console. I can use Windows Terminal instead. Looks like MultiByteToWideChar
is what I need.