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
- NDK
- flutter firestore
- Django REST framework
- Kotlin
- C/C++
- 안드로이드 구글맵
- Python
- android push
- livedata
- android architecture component
- Android
- mfc
- Django REST Android
- 안드로이드
- Rxjava2
- dart
- Android P
- C++
- RxJava
- 알고리즘
- Java
- C
- Flutter TextField
- FLUTTER
- 프로그래머스
- kodility
- Django REST
- 코틀린
- UWP
- RxAndroid
Archives
- Today
- Total
목록utf8 to unicode MFC (1)
개발하는 두더지
[C/C++/MFC] Unicode Multibyte UTF8 변환
unicode > multibytewchar_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 > unicodewchar_t strUnicode[256] = {0,};char strMultibyte[256] = {0,};strcpy_s(strMultibyte,256,"멀티바이트");int nLen..
C,C++
2016. 7. 22. 03:30