【发布时间】:2011-04-12 19:25:01
【问题描述】:
我正在尝试在我的 C++ 应用程序中插入 Unicode 字符 U+2022(子弹 •)。
我不知道如何将 U+2022 转换为字符/字符串以在 std::string 构造函数中使用...
char bullet = char(0x2022);
mPassword.SetText( std::string(mText.length(), bullet) );
这个不行。希望你能帮忙!!
谢谢
opatut
【问题讨论】: