Tagged Questions

0
votes
3answers
72 views

Do I need supplementary plane?

Hi, I think the question is pretty simple, do I need all the rest of the stuff in Unicode after the basic plane? What kind of stuff is included and is that really needed? (and for …
0
votes
3answers
32 views

Using special Chars in Firefox and IE, are being encoded by the browser differently

Hi guys, I've got a multilingual site, that allows users to input text to search a form field, but the text goes through Javascript before heading off to the backend. Special c …
0
votes
1answer
40 views

How to get boost wdirectory_iterator to return UTF32 on the Mac

directory_iterator returns UTF8 using both Visual Studio and Xcode as expected. wdirectory_iterator, however, returns UTF16 using Visual Studio, and UTF8 using Xcode, despite retu …
1
vote
2answers
189 views

Strings in Erlang - what libraries and techniques should I be examining?

I am working on a project that will require internationalisation support down the track. I want to get started on the right foot with UTF support, and I was wondering what the best …
2
votes
4answers
745 views

How to convert (not neccessarily programatically) between Windows’ wchar_t and GCC/Linux one?

Suppose I have this Windows wchar_t string: L"\x4f60\x597d" and L"\x00e4\x00a0\x597d" and would like to convert it (not neccessarily programatically; it will be a one-time th …
8
votes
1answer
133 views

What are the limitations of primitive character types in D?

I am currently exploring the specification of the Digital Mars D language, and am having a little trouble understanding the complete nature of the primitive character types. The bo …
2
votes
3answers
749 views

findstr or grep that autodetects chararacter encoding (UTF-16)

I want to do this: findstr /s /c:some-symbol * or the grep equivalent grep -R some-symbol * but I need the utility to autodetect files encoded in UTF-16 (and friends) and …
1
vote
3answers
160 views

character encoding seems to work on a MAMP server but not on a WAMP server?

Hi, I've working on a web application, that should be able to accept tags and search queries in multiple languages. That's not asking too much, is it? Now, on my development MAMP …
1
vote
7answers
307 views

jsp utf encoding

I'm having a hard time figuring out how to handle this problem: I'm developing a web tool for an Italian university, and I have to display words with accents (such as è, ù, ...); …
2
votes
3answers
331 views

How do I check that string has only international letters and spaces in UTF8 in PHP?

In Python I could've converted it to Unicode and do '(?u)^[\w ]+$' regex search, but PHP doesn't seem to understand international \w, or does it?
1
vote
1answer
87 views

how do I implement a custom code page used by a serial device so I can convert text to it in Python ?

I have a scrolling LED sign that takes messages in either ASCII or (using some specific code) characters from a custom code page. For example, the euro sign should be sent as &lt …
4
votes
6answers
505 views

UTF usage in C++ code

What is the difference between UTF and UCS. What are the best ways to represent not European character sets (using UTF) in C++ strings. I would like to know your recommendations f …