To print double quotes in Java, we can either use:
Or:
System.out.println("\"Hello\"");
Or:
System.out.println((char)34+"Hello"+(char)34) ;