Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / Unicode

Unicode

Unicode

Great Reads

by Pascal Ganaye
A custom C# string implementation that stores its data in a UTF8 byte array.
by JamesHurst
Walks through the creation of an on-screen virtual keyboard for entering non-ASCII chars
by jean Davy
std::string source = "Hello World";std::wstring result( source.begin(), source.end() );One coding line less !
by blytle
also since _bstr_t's have operator (char *) and operator (wchar_t *) if you have included comutil.h, you can use it to do your conversion.char * source = "this is my source" ;_bstr_t converter_temp(source) ;wstring target ;target = wstring(converter_temp) ;... and the other way...

Latest Articles

by Pascal Ganaye
A custom C# string implementation that stores its data in a UTF8 byte array.
by JamesHurst
Walks through the creation of an on-screen virtual keyboard for entering non-ASCII chars
by jean Davy
std::string source = "Hello World";std::wstring result( source.begin(), source.end() );One coding line less !
by blytle
also since _bstr_t's have operator (char *) and operator (wchar_t *) if you have included comutil.h, you can use it to do your conversion.char * source = "this is my source" ;_bstr_t converter_temp(source) ;wstring target ;target = wstring(converter_temp) ;... and the other way...

All Articles

Sort by Score

Unicode 

by Matthew Edmondson
How Unicode can lead to eye-catching symbols. The article was originally published at http://snipurl.com/299cdeu.