Click here to Skip to main content
15,888,286 members
Everything / Unicode

Unicode

Unicode

Great Reads

by Doc Lobster
String conversion using the C++ Standard Library only
by Amit Singh Baghel
A useful tip to export a Div to PDF (with Unicode support) with the help of NReco-PDF Generator for .NET (C#), JQuery and Handler in ASP.NET
by Gregory Morse
Rendering Qur'anic (complex Arabic) scripts with Unicode in a PDF
by Michael Haephrati
A Static Library which can be used for all kinds of database related needs

Latest Articles

by Member 15078716
Unicode / Creating, Writing, Appending / a text (*.txt) file - how to do it
by Michael Haephrati
A Static Library which can be used for all kinds of database related needs
by DebugST
Use [Unicode 14.0.0] version. Can support automatic code generation according to the latest version.
by honey the codewitch
Add UTF-32 support and easy foreach streaming to your apps

All Articles

Sort by Score

Unicode 

13 May 2011 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...
29 Nov 2010 by Alain Rist
With a helper CharMap class using VC2010 C++0x implementation
28 Mar 2011 by jean Davy
std::string source = "Hello World";std::wstring result( source.begin(), source.end() );One coding line less !
15 May 2011 by Doc Lobster
String conversion using the C++ Standard Library only
14 May 2011 by Philippe Mori
inline std::wstring AsciiToUnicode(std::string text){ // Could do some DEBUG check here to ensure it is really ASCII. // Also, if in the future, it is found, it is not the case, // it would much easier to update code. // Same as jean Davy here... return...
16 Dec 2011 by Pascal Ganaye
A custom C# string implementation that stores its data in a UTF8 byte array.
11 Feb 2012 by Richard MacCutchan
Recent questions on reading ANSI vs Unicode text prompted the following
3 Sep 2013 by Stian Andre Olsen
EncodeText is a small program that can decode and encode text files using any of the codecs supported by Qt
20 Nov 2014 by Gregory Morse
How to use uniscribe from VB.NET
21 Mar 2015 by Amit Singh Baghel
A useful tip to export a Div to PDF (with Unicode support) with the help of NReco-PDF Generator for .NET (C#), JQuery and Handler in ASP.NET
9 Mar 2015 by Gregory Morse
Rendering Qur'anic (complex Arabic) scripts with Unicode in a PDF
10 Jan 2016 by WernfriedD
How to set NLS_LANG value for Oracle to support all special characters you need in your language/application.
2 Feb 2020 by honey the codewitch
Add UTF-32 support and easy foreach streaming to your apps
8 Nov 2021 by DebugST
Use [Unicode 14.0.0] version. Can support automatic code generation according to the latest version.
1 Jul 2022 by Member 15078716
Unicode / Creating, Writing, Appending / a text (*.txt) file - how to do it