笑脸的 DOS 字符?

发布于 2024-11-26 23:24:07 字数 99 浏览 3 评论 0原文

有谁知道在 DOS 中打印笑脸所涉及的部分吗?

谈论这个字符: ☺

我所说的位是指字符(或整数)中的位,这样我就可以在 C 中指定这些位并让它打印笑脸。

Does anyone know the bits involved in printing a smiley face in DOS?

Talking about this character: ☺

By bits I mean the bits in the character (or int) such that I could specify those bits in C and have it print a smiley face.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

南风几经秋 2024-12-03 23:24:07

尝试运行此

#include <iostream>
using namespace std;

void main()
{
  for(int i = 0; i < 255; i++)
     cout<<i<<"\t"<<char(i)<<endl;
}

编辑:它似乎是 char(1)

Try running this

#include <iostream>
using namespace std;

void main()
{
  for(int i = 0; i < 255; i++)
     cout<<i<<"\t"<<char(i)<<endl;
}

Edit: It appears to be char(1)

沉睡月亮 2024-12-03 23:24:07

它是整数 1

下面是代码页 437 的示例:
https://en.wikipedia.org/wiki/Code_page_437

It's the integer 1

Here's the examples for code page 437:
https://en.wikipedia.org/wiki/Code_page_437

深爱成瘾 2024-12-03 23:24:07

按 Win + R ->输入 regedit,然后按 Enter。
导航至:HKEY_CURRENT_USER\Software\Microsoft\Input\Settings。
按右键单击右侧窗格,
选择新建> DWORD(32位),并将其命名为UseEmojiPicker,确保值为0。

Press Win + R -> type regedit, and press Enter.
Navigate to: HKEY_CURRENT_USER\Software\Microsoft\Input\Settings.
press Right-click on the right pane,
select New > DWORD (32-bit), and name it UseEmojiPicker, make sure that the value is 0.

童话 2024-12-03 23:24:07

执行此键盘快捷键 Alt+1

Do this keyboard shortcut Alt+1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文