In my project i am getting the nonenglish character from form.If a get a form parameters as @RequestParam.It display the nonenglish character.If i get the form parameter as bean it displays some unwanted character.
<form action="selva" method="get">
<input type="text" name="s" value="அன்பு" />
<input type="submit" value="fgf"/>
</form>
It displays:அன்பு
<form:form method="post" enctype="multipart/form-data" accept-charset="UTF-8" action="multipleSave" modelAttribute="multipleSave">
<input type="text" name="userName" value="அன்பு"/>
<input type="submit" value="submit">
</form:form>
It prints : திலà®à®µà®¤à®¿
How to resolve this error.
Any help will be greatly appreciated!!!