Tagged Questions

3
votes
6answers
122 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 …
1
vote
2answers
489 views

Converting a UCS2 string into UTF8 in Ruby

How to convert a string that is in UCS2 (2 bytes per character) into a UTF8 string in ruby?
1
vote
1answer
102 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 …
7
votes
9answers
3k 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 …
0
votes
1answer
435 views

Storing UTF-16/Unicode data in SQL Server

According to this, SQL Server 2K5 uses UCS-2 internally. It can store UTF-16 data in UCS-2 (with appropriate data types, nchar etc), however if there is a supplementary character this is stored as 2 …