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 |
Tags
- RxAndroid
- RxJava
- Android
- Flutter TextField
- UWP
- mfc
- C++
- 코틀린
- Django REST
- FLUTTER
- 프로그래머스
- 안드로이드
- android architecture component
- C
- NDK
- Django REST Android
- C/C++
- kodility
- Rxjava2
- Django REST framework
- android push
- Java
- 알고리즘
- Kotlin
- 안드로이드 구글맵
- dart
- flutter firestore
- Android P
- Python
- livedata
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