unicode

how to make unicode in window C++
what code is how work if you know about this

please explanme me with source code
closed account (S6k9GNh0)
How do I type? Someone tell me! Please! I need someone to google it for me!

Okay good friend, some people don't understand the concept behind unicode. ASCII letters use 1 byte, Unicode (more often than not) uses 2 bytes to make up for the lack of space needed for extra wanted characters (this varies extremely with each Unicode standard). Although it does more than just increase the size of the common character size plus a common used Unicode implementation is UTF-8 which, as it may be, only 1 byte or 8 bits given the 8 in it's name.

http://msdn.microsoft.com/en-us/library/zs0350fy.aspx
http://www.unicode.org/

And better of all, http://evanjones.ca/unicode-in-c.html

C and C++ often use 4 byte Unicode values. Apparently, the article above helps you with this if you wish to change it.
Last edited on
Also here's a good background on the subject:

http://www.joelonsoftware.com/articles/Unicode.html
Last edited on
Topic archived. No new replies allowed.