The escape character allows you to use double quotes when you normally would not be allowed: txt ="We are the so-called \"Vikings\" from the north." Try it Yourself » Other escape characters used in Python: CodeResultTry it \'Single QuoteTry it » ...
The sequence \" inserts a double quote in a string:ExampleGet your own C# Server 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 ...