getting the number associated to a char in a string
I've this code:
String text = ...
counterchar = ...
char currentchar = text.charAt(counterchar);
Some characters in that string are not "printable" with the System.out.println(text),
because thay are somekind of bookmarks for special instructions..
In few words I need to see their value.
In C the char is equivalent to 8 bit integer, In Java how can i get the integer associated to a String character?
thanks

