Top "Multibyte" questions

PHP (mbstring) provides multibyte specific string functions that help you deal with multibyte encodings

What is a multibyte character set?

Does the term multibyte refer to a charset whose characters can - but don't have to be - wider than 1 …

utf-8 terminology multibyte
Printing UTF-8 strings with printf - wide vs. multibyte string literals

In statements like these, where both are entered into the source code with the same encoding (UTF-8) and the locale …

c unicode utf-8 printf multibyte
Issue with utf-8 encoding using PHP + MySQL

I moved data from MySQL 4 (they were originally set to latin2 encoding) to MySQL 5 and set encoding to utf-8. It …

php mysql encoding utf-8 multibyte
SELECT as much data from CLOB to VARCHAR2 as possible, with multibyte chars in the data

Multi-byte characters had caused me a lot of pain. Any suggestion for this problem? I have a CLOB field that …

sql oracle substr clob multibyte
str_replace() on multibyte strings dangerous?

Given certain multibyte character sets, am I correct in assuming that the following doesn't do what it was intended to …

php multibyte
Get size of a std::string's string in bytes

I would like to get the bytes a std::string's string occupies in memory, not the number of characters. The …

c++ string multibyte
mb_str_replace()... is slow. any alternatives?

I want to make sure some string replacement's I'm running are multi byte safe. I've found a few mb_str_…

php multibyte
Multibyte trim in PHP?

Apparently there's no mb_trim in the mb_* family, so I'm trying to implement one for my own. I recently …

php regex unicode multibyte mbstring
UTF8 vs. UTF16 vs. char* vs. what? Someone explain this mess to me!

I've managed to mostly ignore all this multi-byte character stuff, but now I need to do some UI work and …

string utf-8 character-encoding utf-16 multibyte
UTF-8 characters don't display correctly

This is my PHP code: <?php $result = ''; $str = 'Тугайный соловей'; for ($y=0; $y < strlen($str); $y++) { $tmp = …

php utf-8 multibyte