The sequence \' inserts a single quote in a string:Example string txt = "It\'s alright."; Try it Yourself » The sequence \\ inserts a single backslash in a string:Example string txt = "The character \\ is c
The sequence \" inserts a double quote in a string:Example string txt = "We are the so-called \"Vikings\" from the north."; Try it Yourself » The sequence \' inserts a single quote in a string:Example string txt = "It\'s alright."; Try it Yourself » The sequence \\ ...