Including double quotes as a part of the string

I want to create a csv file with the following as sample as output. But I am not able to include double quotes as a part of my string. I have tried this using escape sequences too. But when I include double quote as a part of the string, instead of a single double quote, multiple double quotes are included. Please help me to resolve this issue.

id=“1”,fullname=“meera”,lastname=“ramanan”
id=“2”,fullname=“priya”,lastname=“ramesh”

When values contain a double quote in csv, Mockaroo escapes this by doubling the double quote character. This is the standard escape sequence for double quotes. For example, if you open the generated file in excel, or use a CSV parsing library in the language of your choice, you’ll just see one double quote.