You can escape special characters from within a string literal by preceding the special character with a backward slash (\). The following code example shows how the backward slash character can be included in a string by escaping it as well.
"This is a string that contains \" double quotes\"."
"This is a string that contains backward slashes as in a file path: \\c:\\windows."