Top "Wchar-t" questions

`wchar_t` is a fundamental data type in the C and C++ programming languages, and it stands for "wide character". Its intended use is to hold any character value from "the system's character set".

Errors using TCHAR,cannot convert to wchar_t

I've been asked to add functionality to an existing old project but i cannot get it to build. It handles …

c++ wchar-t tchar
WChars, Encodings, Standards and Portability

The following may not qualify as a SO question; if it is out of bounds, please feel free to tell …

c++ unicode wchar-t
Converting contents of a byte array to wchar_t*

I seem to be having an issue converting a byte array (containing the text from a word document) to a …

c++ bytearray wchar-t lptstr
How do i convert const wchar_t* to System::String?

I need to convert my SHA1 (wchar_t*) to a normal String^ in order to use it in a certain …

.net string c++-cli wchar-t
Print wchar to Linux console?

My C program is pasted below. In bash, the program print "char is ", Ω is not printed. My locale are all …

c linux console wchar-t wchar
array of wchar_t

I would like to have an array of wchar_t's. The following works: char** stringArray; int maxWords = 3; stringArray = new char*[…

c++ unmanaged visual-c++-2005 wchar-t wchar
Deprecated conversion from string const. to wchar_t*

Hello I have a pump class that requires using a member variable that is a pointer to a wchar_t …

c++ deprecated wchar-t
Reading/writing/printing UTF-8 in C++11

I have been exploring C++11's new Unicode functionality, and while other C++11 encoding questions have been very helpful, I …

utf-8 c++11 wchar-t utf-32 codecvt
C++, WCHAR[] to std::cout and comparision

I need to put WCHAR[] to std::cout ... It is a part of PWLAN_CONNECTION_NOTIFICATION_DATA passed from Native …

c++ winapi wchar-t widechar
Convert wchar_t* to UTF-16 string

I need a code in C++ to convert a string given in wchar_t* to a UTF-16 string. It must …

c++ c unicode utf-16 wchar-t