Is there any JQuery autocomplete for Unicode character(Thai). I already with this and that my code for asp.net
protected void Page_Load(object sender, EventArgs e)
{
var q = Server.UrlEncode(Request.QueryString["q"]);
Response.Write(q);
}
The URL is 类似情况。
I got q="%e0%b8%93";
actually the correct value is ณ .
So I don t know client side encoding is wrong or server side encoding is wrong ?
Pls 帮助我