在 C++ 中使用 UNICODE 字符值
如何在 C++ 中使用 unicode? 我知道 wchar_t
和 wchar_t*
但我想知道如何仅使用 Unicode 值来分配值,类似于通过将变量等同于来分配字符的方式ASCII 值:
char a = 92;
如果有影响的话,我正在使用 MinGW 编译器。
How do you use unicode in C++ ?
Im aware of wchar_t
and wchar_t*
but I want to know how you can assign value using only Unicode Values, similar to the way a character can be assigned by equating the variable to the ASCII value:
char a = 92;
Im uysing the MinGW compiler, if it makes a difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可以很简单:
It can be as simple as:
完全相同的方式:
Exactly the same way: