Decoding %E9 to utf8 fails
问题 I'm having some trouble decoding some encoding char. What i need to decode is the %E9, i have a string like this D%E9bardeur and degr%E9 What i do in my java class, is the following: try { System.out.println(o);// test o = URLDecoder.decode((String) o, "UTF-8"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } After this operation, what i get is D�bardeur and degr� The very same happens when i dont decode to utf-8 Any advice? thx 回答1: %E9 is not UTF-8. The correct way to