js code is as follows
var e = a.charCodeAt(t).toString(16);这一行不明白
function encode_unicode_param(a) {
for (var s = "", t = 0; t < a.length; t++) {
var e = a.charCodeAt(t).toString(16);
s += 2 == e.length ? "n" + e: e
}
return s
}
python3 Next: