Tagged Questions

6
votes
4answers
2k views

How to find out if Python is compiled with UCS-2 or UCS-4?

Just what the title says. $ ./configure --help | grep -i ucs --enable-unicode[=ucs[24]] Searching the official documentation, I found this: sys.maxunicode: An integer giving the largest ...
2
votes
2answers
201 views

UCS2 vs UTF. What languages can not be displayed in the UCS2 encoding?

UCS2 easier to use in Visual C++, than UTF encoding. What languages I can not support in UCS2 encoding?
1
vote
1answer
126 views

What's the longest (in bytes) UTF-8 character which is present in UCS-2?

What's the longest (in bytes) UTF-8 character which is present in UCS-2?
1
vote
1answer
254 views

How do I convert a 16-bit UCS-2 integer value into a char?

I am parsing values from a binary file. One value I am parsing is a 16-bit number which represents the UCS-2 encoding of a unicode character. I'm converting it to a character like this: char c = ...
1
vote
1answer
792 views

UCS-2LE text file parsing

I have a text file that was created using some Microsoft reporting tool. The text file includes the BOM 0xFFFE in the beginning and then ASCII character output with nulls between characters (i.e ...
1
vote
3answers
2k views

How do I convert a UCS2 string into UTF8?

How to convert a string that is in UCS2 (2 bytes per character) into a UTF8 string in Ruby?
0
votes
1answer
101 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 ...