- is there any way to decode string? [closed]
- import org.apache.commons.lang.StringEscapeUtils;
- public class Test {
- public static void main(String[] args) {
- String str = "äså";
- System.out.println(StringEscapeUtils.unescapeHtml(str)); // prints äså
- }
- }