我有一堆以%XX%XX形式编码的字符。如何使用Javascript显示实际字符?
Examples of the characters are...
what I have / what I want
%C5%93 / œ
%C3%A6 / æ
%C3%9F / ß
感谢您的帮助!
答案 0 :(得分:1)
使用内置的decodeURI
或decodeURIComponent
功能。
答案 1 :(得分:0)
return decodeURIComponent("%C5%93%C3%A6%C3%9F"); // "œæß"