i need java codes. pls help me. example. when i enter the number in ASCII; 0 the output will be nul 1 for soh 2 for stx until it reaches the max number of ascii. please i need it now. thanks in advance ;)
pls consider this code.. this code output is a ascii number. how can i reverse it?
String test = "ABCD";
for ( int i = 0; i < test.length(); ++i ) {
char c = test.charAt( i );
int j = (int) c;
System.out.println(j);
}