are you using normal text box or one with tinymce....If not using tiny mce try with that ...
how does the component put the value on the query string?did you try encoding the value when building the url to the jsp page?
that means before even submitting the request to JSP the parameter "q" in URL takes the Junk Character instead of french character. SO I guess we need to find some way that when JS function takes the value of textbox it shuold not take the junk characters but it should read it as french character. Do you have any idea what can be done?
alert(decodeURI("r%E9sultat"))
It's not a junk character, it's the url/i encoded form of the letter "é". alert(decodeURI("r%E9sultat")) You should be able to decode the string in the jsp, try this:http://www.roseindia.net/jsp/jsp-decode.shtml
It looks like the correctly url encoded string is being sent to the jsp page. So I would look at the application and jsp page.e.g. Is there any configuration setting on the application that may need updating to to allow utf-8 encoding/decoding ?
Is your console configured to render utf-8 characters ?