引号里能放 Unicode 字符。
"Hello World"
"two\nlines"
"\"This is in quotes\""
char a = '\u0001';
String a = "\u0001";
byte a = 68;
char a = 'A';