views:

2076

answers:

5

Any good converter for GB, Big5, Unicode?

Convert GB to Unicode, Unicode to GB, Big5 to Unicode, Unicode to Big5, GB to Big5.

+1  A: 

iconv should be able to do the job. It's part of the GNU C Library.

http://en.wikipedia.org/wiki/Iconv
http://www.gnu.org/software/libiconv/
huaiyuan
A: 

If it's a converting tool that you need, you can try:

http://alf-li.pcdiscuss.com/c_convertz.html

Really useful to me, it does GB/BIG5/UNICODE.

Atlas
A: 

Check out ICU, the International Components for Unicode. Most likely you will find what you need there.

lothar
+1  A: 

I recommand to use from Unicode Converter provided by codeplex at http://unicode.codeplex.com it is free and open source software with GNU 2.0 License.

this application convert a char or a sring to Hxcde or Decimal and gives you a complete information about each char, you can create a unicode text by provided editor and change your sentense at any time,

really a good and usefull app

Nasser Hadjloo
A: 

iconv can handle these.

  • Convert GB to Unicode
  • Unicode to GB
  • Big5 to Unicode
  • Unicode to Big5

But not

  • GB to Big5.

It is expected many missing characters.

OmniBus