How to UnEscape "& quot ;" in a string?
I have a JSON response that's extract to a string like this:
What name represents the letter & quot;M & quot; in the NATO phonetic alphabet?
Note: I am spacing out & and quot; in this question because this form correctly unescapes it lol, the irony!
Using WWW.UnEscape() did not work, it only works for URL replacement characters such as %20, etc...
I've seen examples of maybe HttpUtility.HtmlDecode() taking care of it, but Unity does not recognize that package by default.
Is there any solution besides using an (non-unity) outside C# library or a third party solution?
Comment