I have some Java code that should be very simple and straightforward, and unfortunately, I'm getting very odd results.
Put simply, I'm doing a basic conversion from ASCII integers back into their string values.
For instance, if I do:
char n = (char) 152;
System.out.print(n); // should yield: ÿ.
Unfortunately, this is simply yielding: ?
Anybody have any familiarity with this type of problem?