I am trying to parse some JavaScript and one line
var x = unescape("%u4141%u4141 ......");
with a large number of characters in the form %uxxxx .
I want to rewrite JavaScript in c# , but cannot determine the appropriate function to decode a string of characters like this. I tried
HttpUtility.HTMLDecode("%u4141%u4141");
but that did not change these characters at all.
How can I accomplish this in C #?
vivek a.
source share