In the context of a Wicket component using JavaScript, I'm sending the following string back to Wicket :
"FICHIERfichier&é'(-è_çà)=~#{[`^@]}^$ù,;!¨£%µ§êë-+¤.0²123456789.pdf"
I have to escape() this in JavaScript because otherwise Wicket interprets the ampersand as a parameter delimiter and chops the string into multiple parameters.
However, this is what I get on the Wicket side of things :
"FICHIERfichier&�'(-�_��)=~#{[`^@]}^$�,;!��%����- �.0�123456789.pdf"
Any ideas ? I've tried many unescape/decode methods to no avail...
Many Thanks !