class ASCII{ static int fuc(char s){ int num = s; return num; } public static void main(String a[]){ System.out.println(fuc('A')); } }