I am working with JSON to communicate data between two systems. One of the properties in JSON is rich text. Most of the times there are no problems but once in a blue moon special characters like curly quotes which are not UTF-8 characters make it into the rich text.
I want to replace these special characters with their UTF-8 equivalents. How can I achieve this in C Sharp?
Example of this string - “Cops bring lettuce & tomato, dispose of evidence,”
. If I create a regular quote it's like this - "
Thanks