网站url中的中文会变成%D7这样的,如何转换回去中文?
:网站url中的中文会变成%D7这样的,如何转换回去中文?

尝试JS的 decodeURIComponent('xx')方法;
尝试使用服务端语言的Request,会自动解码;
如果是unicode字符,可以尝试下面的方法:
function str2asc(str){
return str.charCodeAt(0).toString(16);
}
function asc2str(str){
return String.fromCharCode(str);
}
alert(str2asc("a"));//61
alert(asc2str("0x61"));//a