How to show a quote in a string in 4GL

SOLVED

How can I show a quote in a string?

I am not looking for answer like you can have a single quote and then the quotes inside the single quotes.

Is there a 4GL command that will add a " into a string without ending the string

In java, we would put \" and it will not end the string. 

Example:

local char test

test = "hello! mike said the following quote "dsfsdfs" "

in java, it would be written like this:

test =  "hello! mike said the following quote \"dsfsdfs \" "

Thanks!

Chris