Tagged Questions

11
votes
9answers
12k views

C++ strings: UTF-8 or 16-bit encoding?

I'm still trying to decide whether my (home) project should use UTF-8 strings (implemented in terms of std::string with additional UTF-8-specific functions when necessary) or some 16-bit string ...
3
votes
1answer
125 views

best way to detect number of SMS needed to send a text

I'm looking for a code/lib in php that I will call it and pass a text to it and it will tell me: What is the encode I need to use in order to send this text as SMS (7,8,16 bit) How many SMS message ...
2
votes
1answer
97 views

About ActionScript3 and encoding characters

I have a flash app and a textfield in it. I can change locale on the system tray and type unicode chracters, for example with windows -1251 encoding. If I use jquery to send the unicoded text to save ...
2
votes
1answer
113 views

python base64 string decoding

I've got what's supposed to be a UCS-2 encoded xml document that I've managed to build a DOM based on minidom after some tweaking. The issue is that I'm supposed to have some data encoded on base64. ...
0
votes
1answer
103 views

Why was the Python Unicode internal format implemented as described in PEP 100?

http://www.python.org/dev/peps/pep-0100/ PEP 100 states that the internal format, Python Unicode, holds UTF-16 encodings, but addresses the values as UCS-2 (or UCS-4 when compiled with flag ...
0
votes
1answer
172 views

Encoding problem: ucs2_bin collate does not support cyrillic and greek languages

I need to store and compare text in several language in a field of a Mysql database. Actually, I set uc2 for character set and ucs_bin for collate, and I find that it does not work for cyrillic and ...
0
votes
0answers
397 views

How NOT to skip BOM info (FF FE) when using fread or ifstream?

I'm trying to use fread/ifstream to read the first 2 bytes of a .csv with BOM info. But following code always skips the first two bytes (which are 'FF FE'): ifstream is; is.open (fn, ios::binary ); ...