public class PrintChar { public static void main(String args[]) { char x; x='d'; System.out.print(x); } }