package tipochar;
/**
*
* @author alessandrovivas
*/
public class TipoChar {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
char x=0;
for (int i=0;i<65535;i++)
{
System.out.println(x + " ");
x++;
}
}