println question(good one)

i cant figure out how to use " inside the println(). does nebody know the unicode for the same?
[102 byte] By [sjosh_theonea] at [2007-11-27 9:00:10]
# 1
Check your other post
ita6cgra at 2007-7-12 21:28:32 > top of Java-index,Java Essentials,New To Java...
# 2
cross post http://forum.java.sun.com/thread.jspa?threadID=5189209&tstart=0
achyuthba at 2007-7-12 21:28:32 > top of Java-index,Java Essentials,New To Java...
# 3
Double quote needs to be escaped as follows:System.out.println("abc\"def");Similiarly, if you have \ within it, it needs to be escaped too as \\.
George123a at 2007-7-12 21:28:32 > top of Java-index,Java Essentials,New To Java...