1char ch = 'a';
2// Unicode for uppercase Greek omega character
3char uniChar = '\u03A9';
4// an array of chars
5char[] charArray = { 'a', 'b', 'c', 'd', 'e' };
6
1public class EsempioCharat {
2 public static void main(String args[]) {
3 String str = "informaticappunti.it";
4 //Estraiamo il primo carattere della stringa
5 char ch1 = str.charAt(0);
6
7 //Estraiamo il sesto carattere della stringa
8 char ch2 = str.charAt(5);
9
10 System.out.println("Il carattere all'indice 0 è: "+ch1);
11 System.out.println(" Il carattere all'indice 5 è: "+ch2);
12 }
13}