Tagged Questions

20
votes
6answers
480 views

Unicode hell (on Windows) [closed]

Today I woke up and felt something was awfully wrong with my code and every library I've ever used, and I think I was right... (or please point out where my reasoning is wrong) Let's start I decade ...
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 ...
2
votes
1answer
48 views

UCS-2 and SQL Server

While researching options for storing mostly-English-but-sometimes-not data in a SQL Server database that can potentially be quite large, I'm leaning toward storing most string data as UTF-8 encoded. ...
2
votes
1answer
90 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
2k views

UCS2/HexEncoded characters to UTF8 in php

I asked a question previously to get a UCS-2/HexEncoded string from UTF-8, and I got some help from some guys at the following link. UCS2/HexEncoded characters But now I need to get the correct ...
1
vote
1answer
279 views

Converting UCS2 (Unknown LE or BE) In Numeric Hex format to UTF-8 Using Perl

Hoping someone can point me in the direction of where i'm going wrong with this: I have a string of (what I believe) is hex-encoded UCS2, but the provider cannot tell me if it is UCS2-LE or UCS2-BE. ...
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
939 views

How do I convert UTF-8 data from Classic asp Form post to UCS-2 for inserting into SQL Server 2008 r2?

I am in the process of "modernizing" a classic asp application that uses a Access 2000 database. I rewrote the database on SQL Server 2008r2 and changed all of the fields to use the newer unicode ...
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
33 views

Check string whether is UTF-8 or UCS-2

If I have a list of data: $a = "hello"; $b= "4f60"; $c = "hi"; $d = "00480065006C006C006F"; $b and $d are UCS-2 string. I wish to display all these data in a table,so how can I know whether ...
0
votes
1answer
173 views

Howto upload a file encoded in UCS-2 Little Endian into a Mysql table in UTF-8

I have a csv file encoded in UCS-2 Little Endian which I would like to upload into my MySQL table which is encoded in UTF-8 - default collation. I'm curious as to what the best approach is. If I ...
0
votes
0answers
360 views

How can SELECT HEX(CHAR(0x4E8C USING ucs2)) return '4E01' instead of '4E8C'?

I converted a kanji column in my database to UCS-2 codes with this, it works: SELECT hex(convert('二' using ucs2)); => 0x4E8C aka &#x4E8C aka Unicode Code Point 20108 But if I want to ...