Here is one nice small snippet.
const wchar_t* to_wide( const std::string& strToConvert ) {
return std::wstring( strToConvert.begin(), strToConvert.end() ).c_str();
}
Notice: not working, skip it. I just leave it as is, to be here as warning how NOT to do some things.

Find content
Male