public class Main {
public static void main(String[] args) {
String result;
// 使用 Unicode 码点表示字符
result = String.format("%c%c%c%c%c", 72, 101, 108, 108, 111);
System.out.println(result);
// 强制将 Unicode 字符转为大写
result = String.format("%C%C%C%C%C", 72, 101, 108, 108, 111);
System.out.println(result);
}
}