I am learning java and the answer of one question seems to be wrong: question: Which of the following are legal?
char c = 0x1234;//A
char c = \u1234;//B
char c = '\u1234';//C
in the book the answer is C, but I think it should be both A and C. Anyone please verify that for me?