Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] argv) throws Exception {
String test = "ABCD";
for (int i = 0; i < test.length(); ++i) {
char c = test.charAt(i);
int j = (int) c;
System.out.println(j);
}
}
}