www请求用到的Unescape
//发送请求
WWW w = new WWW(url);
//web服务器返回
yield return w;
if (!string.IsNullOrEmpty(w.error))
{
Debug.Log(w.error);
}
else
{
string w_text = Regex.Unescape(w.text);
}