
public class Typing
{
   public static void main(String[] args) 
   {
     char x = 65; // Interprete number with Unicode
     System.out.println( x );

     int  y = 65;  // Interprete number as binary number
     System.out.println( y );
   }
}  
