String word = "welcome";
char Char[] = word.toCharArray();

for(int j = 0; j < Char.length; j++){
int n = Char[j];
System.out.println(n);
}