I have a function which requires me to pass a UTF-8 string pointed by a char*, and I have the char pointer to a single-byte string. How can I convert the string to UTF-8 encoding in C++? Is there any code I can use to do this? Thanks!
|
|
To convert a string to a different character encoding, use any of various character encoding libraries. A popular choice is iconv (the standard on most Linux systems). However, to do this you first need to figure out the encoding of your input. There is unfortunately no general solution to this. If the input does not specify its encoding (like e.g. web pages generally do), you'll have to guess. As to your question: You write that you get the string from calling
If you use the standard Additional information: You may have to play with the mount options |
||||
|
|
Assuming Linux, you're looking for iconv. When you open the converter ( On Windows, you have pretty much the same with MultiByteToWideChar where you pass |
|||
|
|
|
I guess the top bit is set on the 1 byte string so the function you're passing that to is expecting more than 1 byte to be passed. First, print the string out in hex. i.e.
Now have a read of the wikipedia article on UTF8 encoding which explains it well. UTF-8 is variable width where each character can occupy from 1 to 4 bytes. Therefore, convert the hex to binary and see what the code point is. i.e. if the first byte starts 11110 (in binary) then it's expecting a 4 byte string. Since ascii is 7-bit 0-127 the top bit is always zero so there should be only 1 byte. By the way, the bytes following the first byte in a wide character of a UTF8 string will start "10..." for the top bits. These are the continuation bytes... that's what your function is complaining about... i.e. the continuation bytes are missing when expected. So the string is not quite true ascii as you thought it was. You can convert using as someone suggested iconv, or perhaps this library http://utfcpp.sourceforge.net/ |
|||||||
|