答案 0 :(得分:1)
控制台通常不支持显示unicode字符。尝试解决此问题的解决方案Unicode characters in Windows command line - how?
答案 1 :(得分:1)
试试这个:
#include <iostream>
#include <fcntl.h>
#include <io.h>
int main()
{
_setmode(_fileno(stdout), _O_U16TEXT);
std::wcout << L"m\u00B3" << std::endl;
return 0;
}