Hi,
I java code, i am having a string name = "örebro"; // its a swedish character.
But when i use this name in web application. i prints some specail character at 'Ö' character.
Is there anyway i can use the same character as it is in "örebro".
i did some thing like this but does not worked.
String name = "örebro";
byte[] utf8s = name .getBytes("UTF-8");
name = new String(utf8s, "UTF-8");
But the name at the end prints the same, something like this. �rebo
Please guide me