运行 ❯
获取您自己的
Java
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
public class Main { public static void main(String[] args) { String result; // Represent characters from their unicode code points result = String.format("%c%c%c%c%c", 72, 101, 108, 108, 111); System.out.println(result); // Force unicode characters to uppercase result = String.format("%C%C%C%C%C", 72, 101, 108, 108, 111); System.out.println(result); } }
你好
你好