最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c++ - Microsoft Visual Studio is not recognizing special characters - Stack Overflow

programmeradmin2浏览0评论

I am trying to display suit characters on a Windows console, but so far nothing I tried has worked.

#include<iostream> 
using namespace std;

int main() {
    //define the unicode for four suits, for display purpose
    const char SPADE[] = "\x03";
    const char CLUB[] = "\x04";
    const char HEART[] = "\x05";
    const char DIAMOND[] = "\x06";
    cout << SPADE;
}

But it outputs nothing. Then I tried:

// the following works for the Unix system, including Mac OS
const char SPADE[] = "\u2660";
const char CLUB[] = "\u2663";
const char HEART[] = "\u2665";
const char DIAMOND[] = "\u2666";
cout << SPADE;

and it output "?". I even tried simply:

cout << "♠" <<;

and it still output "?".

发布评论

评论列表(0)

  1. 暂无评论