in reply to How do I print a quotation-mark?
print chr(34); my $quot = chr(34); print "This is ${quot}not$quot a quote.\n"; [download]
Use the octal or hexadecimal escape code:
print "\042"; print "\x22"; [download]