I am getting a string in my C# code that comes from some javascript serialization and I see a bunch of strings like this:
Peanut Butter \u0026 Jelly
I tried doing this:
string results = resultFromJsonSerialization();
results = results.Replace("\u0026", "&");
return results;
and I am expecting that to change to:
Peanut Butter & Jelly
but it doesn't seem to do the replace. What is the correct way to do this replacement in C#?