Codeset Conversion Tools from I18NFAQ.COM

Codeset Conversion Tools from I18NFAQ.COM


How can I convert strings from one encoding to another ?
Any applet online to convert from one encoding to another ?

How can I convert strings from one encoding to another ?

Download this java class. and run.

%java jiconv

This will display the usage. Make sure you have the international version of JRE. (How to find out ?)
Source:

Any applet online to convert from one encoding to another ?

Use the applet below to convert strings from one encoding to another. Note: The input strings should be in escaped hex format.
E.g:
Unicode (UTF-16) String: \u0041\u0042\u8868
Japanese Shift-JIS String: \x41\x42\x95\x5C
Tips: To find the hex value of a multi-byte string use the UNIX command "od -x". For Windows, you can download this hex dump (hod.exe) from http://www.muquit.com/muquit/software/hod/hod.html
To printout the Java string in "Unicode-encoded" (\uXXXX) format. see java.html#6 0x3F output means question mark.
Source: