char a = 'l';System.out.println("\'a\'");
输出的值为'a',而不是'l';想让输出为'l'该怎么做
System.out.println("\'" + a + "\'");