-1
votes
1answer
205 views

What is the escape character for semi-coloon(;) in xslt

can't seem figure out the escape character for semi-colon(;) i'm trying to put this line in my head tag <META http-equiv="Content-Type" content="text/html; charset=UTF-16"> but the ...
1
vote
2answers
760 views

C# build json string that has semicolons in the data

I am creating a string as follows: string title = "Q:hello"; I then want to embed this string in a JSON string to send to the client. How do I escape the semicolon? I don't want to use a library. ...