To extract Ascii codes from a String : String « Data Type « Java






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
*/

   
    
    
    
    
  








Related examples in the same category

1.Get String hash code
2.LengthOf - show length of things
3.Show string escapesShow string escapes
4.Convert string to char array
5.See if Strings are shared in Java
6.Find text between two strings
7.If a string is empty or not
8.Count word occurrences in a string
9.Check for an empty string
10.Remove leading and trailing space from String
11.Reverse a string
12.Put quotes around the given String if necessary.
13.Starts With Ignore Case
14.Repeat String
15.implements CharSequence