%C3%A9 is the correct percent encoding for URIs using UTF-8 code units. I suspect you're using escape()/unescape() instead of encodeURIComponent (or encodeURI() )/decodeURIComponent (or decodeURI ()). escape() fails to handle non-ASCII characters correctly, so you should avoid the use of escape() whenever possible.
On Mar 9, 7:32 am, thibaultdelor <braill...@hotmail.com> wrote: > Hello, I think that the param function doesn't work well, it doesn't > encode to the url format. For example : > > jQuery.param({test:"béton"}) > > return : > > test=b%C3%A9ton > > while it has to return : > > test=b%E9ton > > This problem is present in the form plugin, the ajax.submit function > use "param" and so it doesn't work well too. > > Thanks!