views:

22

answers:

1

what encoding unescape() function uses ?

I have problem that URL param has utf8 foreign chars, that flash fails to read.

+2  A: 

Use encodeURIComponent() and decodeURIComponent(). More info about functions.

Maxim Kachurovskiy