抱歉,这很傻。如何打印Unicode字符,例如使用整数\ u20ac?因此,我想传递整数8364而不是Console.WriteLine("\u20ac");
谢谢。

最佳答案

只需将数字强制转换为表示UTF-16代码点的char即可:

public static void PrintChar(int codePoint)
{
    Console.WriteLine((char) codePoint);
}

PrintChar(8364);

10-02 01:37