gpt4 book ai didi

java - Java 中的 Unicode 打印 - 抽象字符

转载 作者:行者123 更新时间:2023-12-01 11:04:58 26 4
gpt4 key购买 nike

我正在制作这个打印 Unicode 字符的程序。它看起来像这样:

public class test {
public static void main(String[] args) {
System.out.println('\u00A5');
System.out.println((char) 0x00A5);
System.out.println((char) (Integer.parseInt("00A5", 16)));
System.out.println('\u261E');
System.out.println((char) 0x261E);
System.out.println((char) (Integer.parseInt("261E", 16)));
}
}

输出如下:

¥
¥
¥
?
?
?

为什么后半部分打印问号?

我可以理解打印日文字符的程序,但是当我将其更改为 \u261E 时,我认不出来了。有什么帮助吗?

最佳答案

如果您想应用特定于您的项目的更改,则:

Go to your project properties -> change Text file encoding to UTF-8

This is for project specific changes

如果您想将其应用于全局所有项目,那么:

got to Window -> Preferences -> General -> Workspace : Text file encoding

this is for global changes

注意:

If you are using some other IDE, you should have similar option there too.

关于java - Java 中的 Unicode 打印 - 抽象字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33050437/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com