Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- RxAndroid
- Kotlin
- android push
- UWP
- RxJava
- android architecture component
- Python
- 안드로이드
- kodility
- C
- C++
- FLUTTER
- 알고리즘
- mfc
- Django REST framework
- livedata
- Django REST
- NDK
- Android P
- flutter firestore
- dart
- 프로그래머스
- 코틀린
- Flutter TextField
- 안드로이드 구글맵
- C/C++
- Django REST Android
- Rxjava2
- Android
- Java
Archives
- Today
- Total
개발하는 두더지
[C/C++/MFC] Unicode Multibyte UTF8 변환 본문
unicode > multibyte
- wchar_t strUnicode[256] = {0,};
- char strMultibyte[256] = {0,};
- wcscpy_s(strUnicode,256,L"유니코드");
- int len = WideCharToMultiByte( CP_ACP, 0, strUnicode, -1, NULL, 0, NULL, NULL );
- WideCharToMultiByte( CP_ACP, 0, strUnicode, -1, strMultibyte, len, NULL, NULL );
multibyte > unicode
- wchar_t strUnicode[256] = {0,};
- char strMultibyte[256] = {0,};
- strcpy_s(strMultibyte,256,"멀티바이트");
- int nLen = MultiByteToWideChar(CP_ACP, 0, strMultibyte, strlen(strMultibyte), NULL, NULL);
- MultiByteToWideChar(CP_ACP, 0, strMultibyte, strlen(strMultibyte), strUnicode, nLen);
unicode > utf8
- wchar_t strUni[256] =L"유니코드";
- char strUtf8[256] ={0,};
- int nLen = WideCharToMultiByte(CP_UTF8, 0, strUni, lstrlenW(strUni), NULL, 0, NULL, NULL);
- WideCharToMultiByte (CP_UTF8, 0, strUni, lstrlenW(strUni), strUtf8, nLen, NULL, NULL);
utf8 > unicode
- wchar_t strUnicode[256] = {0,};
- char strUTF8[256] = {0,};
- strcpy_s(strUTF8,256,"utf-8글자..");
- int nLen = MultiByteToWideChar(CP_UTF8, 0, strUTF8, strlen(strUTF8), NULL, NULL);
- MultiByteToWideChar(CP_UTF8, 0, strUTF8, strlen(strUTF8), strUnicode, nLen);
'C,C++' 카테고리의 다른 글
C++ 11/14/17 이란? (0) | 2016.07.22 |
---|---|
[C/C++/MFC] URLEncode, URLDecode (2) | 2016.07.22 |
[C/C++/MFC] C++ HTTP Web Server에서 HTTPS/SSL 사용하기 (AJAX 통신) (5) | 2016.07.22 |
[C/C++/MFC] 윈도우 서비스에서 응용 프로그램 실행하기(CreateProcessAsUser) (8) | 2016.07.22 |
[C/C++/MFC] 윈도우 서비스 생성/시작/중지/삭제 (0) | 2016.07.22 |
Comments