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