I am facing some problem to show unicode characters in a jsp.
I have done as following
String s1="\u0985";
String s2=request.getParameter("str");
out.println("s1:=="+s1);
out.println("s2:=="+s2);
now when we are passing the same value (\u0985)
as s1
to the s2
.
output:
s1:==অ
s2:==\u0985
i want s1
and s2
give me the same output.
Any help is highly appreciated