c++unicode转为utf8
时间: 2023-07-28 10:09:26 浏览: 112
在C++中,可以使用以下代码将Unicode字符串转换为UTF-8字符串:
```cpp
#include <iostream>
#include <windows.h>
#include <wchar.h>
/*
从宽字符串转为utf8字符串
@param \[in\] in_wStr 输入宽字符串
@return 返回值为UTF8字符串,如果转换失败,返回NULL
*/
std::string UnicodeToUtf8(const std::wstring& in_wStr) {
int nNeedChars = WideCharToMultiByte(CP_UTF8, 0, in_wStr.c_str(), -1, 0, 0, 0, 0);
if (nNeedChars > 0) {
std::vector<char> temp(nNeedChars);
::WideCharToMultiByte(CP_UTF8, 0, in_wStr.c_str(), -1, &temp\[0\], nNeedChars, 0, 0);
return std::string(&temp\[0\]);
}
return std::string();
}
```
以上代码定义了一个名为`UnicodeToUtf8`的函数,它接受一个`std::wstring`类型的宽字符串作为输入,并返回一个UTF-8字符串。该函数使用`WideCharToMultiByte`函数将宽字符串转换为UTF-8字符串。
使用该函数的示例代码如下:
```cpp
std::wstring unicodeStr = L"你好世界";
std::string utf8Str = UnicodeToUtf8(unicodeStr);
```
在上述示例中,我们定义了一个宽字符串`unicodeStr`,其中包含了一些Unicode字符。然后,我们调用`UnicodeToUtf8`函数将宽字符串转换为UTF-8字符串,并将结果存储在`utf8Str`中。
请注意,为了正确使用上述代码,您需要包含`<iostream>`,`<windows.h>`和`<wchar.h>`头文件,并确保您的编译环境支持Unicode编码。
#### 引用[.reference_title]
- *1* *2* [windows下C++实现Unicode和Utf8编码的互转](https://blog.csdn.net/r5014/article/details/125278587)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [C++ Unicode 转Utf-8](https://blog.csdn.net/wqs880527/article/details/105782532)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文