In my previous question, I asked about conversion of Special Chars to Hex.
Hex value of "ㅂ" is "e38582"
Convert the hex to byte array. Convert a string representation of a hex dump to a byte array using Java?
Interpret the byte array with the correct encoding (based on your previous question, UTF-8):
String output = new String(bytes, "UTF-8");