Thread: Unicode questions

  1. #1
    Registered User code2d's Avatar
    Join Date
    Nov 2006
    Location
    Canada
    Posts
    87

    Question Unicode questions

    I have read that unicode makes it faster to make your applications for the international market....it is also multi-platform and works with all operating systems....

    Is it easy to use???
    Why is it so great (I just dont understand how it works) ????

    Thx for any help.....
    Compiler in use: MinGW

    OS: Windows ME

  2. #2
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    I'm not sure it makes it faster. The work in translating the application strings (whether through resource files, messing with the actual code, or using script or external text files) is much the same whether you are using Unicode or the traditional 8 bit character encoding tables.

    It is however advantageous to use unicode when the objective is to provide an application that one wants global. This because both for input and output, Unicode is the most complete character set and encompasses about every modern language.
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  3. #3
    Registered User code2d's Avatar
    Join Date
    Nov 2006
    Location
    Canada
    Posts
    87
    The work in translating the application strings
    I thought if you used ansi code it would work with all operating systems even if they are in a different languages.....

    It is however advantageous to use unicode when the objective is to provide an application that one wants global. This because both for input and output, Unicode is the most complete character set and encompasses about every modern language.
    So it is just a charcter set for most languages so you can translet to the many different languages????
    Compiler in use: MinGW

    OS: Windows ME

  4. #4
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    > I thought if you used ansi code it would work with all operating systems even if they are in a different languages...

    I didn't say otherwise, did I?

    > So it is just a charcter set for most languages so you can translet to the many different languages????

    Here... http://en.wikipedia.org/wiki/Unicode and here... http://unicode.org/
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. A very long list of questions... maybe to long...
    By Ravens'sWrath in forum C Programming
    Replies: 16
    Last Post: 05-16-2007, 05:36 AM
  2. <string> to LPCSTR? Also, character encoding: UNICODE vs ?
    By Kurisu33 in forum C++ Programming
    Replies: 7
    Last Post: 10-09-2006, 12:48 AM
  3. Unicode - a lot of confusion...
    By Jumper in forum Windows Programming
    Replies: 11
    Last Post: 07-05-2004, 07:59 AM
  4. Should I go to unicode?
    By nickname_changed in forum C++ Programming
    Replies: 10
    Last Post: 10-13-2003, 11:37 AM
  5. UNICODE and GET_STATE
    By Registered in forum C++ Programming
    Replies: 1
    Last Post: 07-15-2002, 03:23 PM