Mega Code Archive

 
Categories / Java Tutorial / Data Type
 

To extract Ascii codes from a String

public class Main {   public static void main(String[] args) throws Exception {     String test = "ABCD";     for (int i = 0; i < test.length(); ++i) {       char c = test.charAt(i);       System.out.println((int) c);     }   } } /* 65 66 67 68 */