Convert some special characters into hex value.
For example :
Hex value of "ㅂ" is "e3 85 82"
Hex value of "ㅈ", "ㄷ", and "ㄱ" are "e3 85 88", "e3 84 b7", and "e3 84 b1" respectively.
I tried below method but it works only for ";", "#" etc
Integer.toHexString("ㅂ") , gives "3142" value. But correct hex value should be "e3 85 82".