Just another web site full of java samples.
public class PrintQuotes { public static void main(String[] args) { // Use an escape sequence \" or \' System.out.println("\"hello\" \'c\'"); } }
$ java PrintQuotes "hello" 'c'