Is it possible to get a copyright symbol in C# Console application?(是否可以在 C# 控制台应用程序中获得版权符号?)
问题描述
是否可以在 C# 控制台应用程序中以任何方式添加版权符号或其他特殊"符号?
Is it possible to add a copyright symbol or other "special" symbol in any way in a C# console application?
推荐答案
namespace test {
class test {
public static void Main() {
System.Console.WriteLine("©");
}
}
}
完美地为我工作.无论控制台窗口设置为光栅字体还是 Unicode.
works for me flawlessly. Regardless of whether the console window is set to raster fonts or Unicode.
如果要输出 Unicode,应将控制台输出编码设置为 UTF-8 或 Unicode.
If you want to output Unicode, you should set the console output encoding to UTF-8 or Unicode.
System.Console.OutputEncoding = System.Text.Encoding.UTF8;
或
System.Console.OutputEncoding = System.Text.Encoding.Unicode;
如果你想清楚源代码编码问题,你应该直接指定字符代码点:
And if you want to stay clear from source code encoding issues you should specify the character code point directly:
System.Console.WriteLine("u00a9");
这篇关于是否可以在 C# 控制台应用程序中获得版权符号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以在 C# 控制台应用程序中获得版权符号?
基础教程推荐
- 如何激活MC67中的红灯 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 XML 转换为通用列表 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01