OK - to be absolutely clear - you have some English text, let's say the days of the week:
Monday
Tuesday
Wednesday
Thursday
Friday
and you want to translate them into Chinese:
周一
周二
周三
周四
周五
and then get the unicode values of those:
\ufffd\uff7f\u873b\uff68\u8373\ufffd
\u873b\uff68\u83a0\ufffd
\u873b\uff68\u8373\ufffd
\u873b\uff68\u8757\ufffd
\u873b\uff68\u83a0\ufffd
(I don't speak Chinese, so forgive me if the above is wrong, or offensive)
What I did was translate the English in Google Translate - you'll probably need to find a better way of doing the translations, if you have a lot of words, or sentences.
Then, I saved the Chinese characters in a UTF-8 friendly text document (Notepad), and ran that through the
Java 'native2ascii' tool, which you'll find in the bin folder of your JDK installation:
The above takes the original characters from foo.txt, replaces them with the unicode equivalents, and saves those in foo2.txt.
I believe you can reverse it as well (a /reverse flag, I think).
Is that helpful?
Dave.