I would like to ask for some help, I want to convertfrom number (0-255) to character, and what I do is:for (int i =0;i<255;i++) {System.out.println((char)i);}Some number appears as "?" and some number is appearsnot correctly.
what you want to do is just to change/convert integers to character and irun that line too it is just printing character who's ascii is that like in0-255 there may be sapce, or some special character so check it with an asciichart.