string test = “汉の字”;
test = WWW.EscapeURL(test);
Debug.Log(test);
What i get : %3f%3f%3f%3f%3f%3f%3f%3f%3f, which equals to ???
Absolutely wrong. EscapeURL cant work with Chinese character?
string test = “汉の字”;
test = WWW.EscapeURL(test);
Debug.Log(test);
What i get : %3f%3f%3f%3f%3f%3f%3f%3f%3f, which equals to ???
Absolutely wrong. EscapeURL cant work with Chinese character?
OK, solved.
You need to switch your script’s encoding to “UTF-8 With BOM”.
Well, are you sure that you saved your script file with an encoding that supports Unicode? Utf8?
I never was in need of using chinese characters yet but other non ASCII characters.