String formatting c# decode?
c#, character-encoding, json, serialization
Solution
Look at HttpUtility.UrlDecode in System.Web
Problem
I have a string which looks like this `'%7B%22id%22%3A1%2C%22name%22%3A%22jim%22%7D'` When read from a cookie it is in fact a JSON object and should look like `{"id":1,"name":"jim"}` Do I need to HTML decode the string to make it appear in the correct JSON notation? Thanks,