Is there an escape character for a quote in xml? I want to write a tag like:
<parameter name="Quote = " ">
but if I put ", then that means string has ended. I need something like this (c++):
printf("Quote = \" ");
Is there a character to write before the quote to escape it?