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