I have an integer variable
For Ex:
int i=200;//I cant store it as '200'
char c=i;
c should also contain '200' i.e that 200 should be in char format not to the ascii value.
I have tried Character.forDigit(i, 10); and Integer.toString(a).charAt(0);//I can't again parse it