I am trying to analyse some JavaScript
, and one line is
var x = unescape("%u4141%u4141 ......");
with lots of characters in form %uxxxx
.
I want to rewrite the JavaScript
in c#
but can't figure out the proper function to decode a string of characters like this. I've tried
HttpUtility.HTMLDecode("%u4141%u4141");
but this did not change these characters at all.
How can I accomplish this in c#?