If you get 0xC3 0xA2 ("â") when encoding your String with ISO-8859-1, the String contains those Unicode characters.
This is a problem at the decoder, not the encoder. Find where the bytes are decoded to characters, and change the character encoding to "UTF-8".
Your current results show that UTF-8encoded –encoded data is incorrectly decoded with ISO-8859-1 (or some other 8-bit encoding).
If you get some bytes from byte[] encoded = original.getBytes(encoding), then later reverse the process with decoded = new String(encoded, encoding(I'd guess ISO-8859-1)), the encoding has to be the same in both places. Reading your question carefully, I suspect that you are passing "UTF-8" to getBytes and "ISO-8859-1" to the decoder. That just won't work.
