You have the so-called double encoding.
"δ½ ε₯½ε", , UTF-8 E4BDA0 E5A5BD E59097.
THAT UTF-8. E4. UTF-8? ! C3 A4!
....: -)
Java, :
public class DoubleEncoding {
public static void main(String[] args) throws Exception {
byte[] encoding1 = "δ½ ε₯½ε".getBytes("UTF-8");
String string1 = new String(encoding1, "ISO8859-1");
for (byte b : encoding1) {
System.out.printf("%2x ", b);
}
System.out.println();
byte[] encoding2 = string1.getBytes("UTF-8");
for (byte b : encoding2) {
System.out.printf("%2x ", b);
}
System.out.println();
}
}