posted 19 years ago
Unicode 0030 to 0039 correspond to numbers from 0 to 9.
So char c = \u0030; is same as char c = 0x0000; (which means set the Ascii code 0 into c) That is why you it can compile, and that is also why printing it out will display garbage.