325
votes
21answers
20k views
Twitter image encoding challenge
If a picture's worth 1000 words, how much of a picture can you fit in 140 characters?
Note: That's it folks! Bounty deadline is here, and after some tough deliberation, I have decided that Boojum's …
26
votes
11answers
1k views
What do I need to know about Unicode?
Being a application developer, do I need to know Unicode?
21
votes
9answers
759 views
ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ȵ --> n or Remove diacritical marks from unicode chars
I am looking an algorithm that can map between characters with diacritics (tilde, circumflex, caret, umlaut, caron) and their "simple" character.
For example:
ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ …
21
votes
16answers
1k views
Why isn’t everything we do in Unicode?
Given that Unicode has been around for 18 years, why are there still apps that don't have Unicode support? Even my experiences with some operating systems and Unicode have been painful to say the …
20
votes
12answers
1k views
Internationalization in your projects
How have you implement Internationalization (18n) in actual projects you've worked on? I took an interest in making software cross-cultural after I read the famous post by Joel, The Absolute Minimum …
19
votes
6answers
939 views
C programming: How to program for Unicode?
What prerequisites are needed to do strict Unicode programming?
Does this imply that my code should not use char types anywhere and that functions need to be used that can deal with wint_t and …
16
votes
3answers
226 views
What is Perl’s “standard string comparison order”?
This is really a double question, my two end goals having answers to:
What is the standard string comparison order, in terms of the mechanics?
What's a better name for that so I can update the docs?
…
14
votes
10answers
1k views
UTF8, UTF16, and UTF32
What are the differences between UTF8, UTF16, and UTF32. I understand that all 3 will store Unicode, and that how it stores the chars is different, but is there an advantage to choosing one over the …
14
votes
8answers
4k views
std::wstring VS std::string
I am not getting the differences between std::string and std::wstring. I know "wstring" supports wide characters such as unicode characters. I have got the following questions
When I should use …
14
votes
42answers
2k views
What’s your favourite character? [closed]
In the symbolic sense, not the dramatic sense. And I'm talking about function rather than design (although that's an interesting question, too).
13
votes
2answers
2k views
Difference between Char.IsDigit() and Char.IsNumber() in C#
What's the difference between Char.IsDigit() and Char.IsNumber() in C#?
11
votes
7answers
3k views
UTF8 to/from wide char conversion in STL
Is it possible to convert UTF8 string in a std::string to std::wstring and vice versa in a platform independent manner? In a Windows application I would use MultiByteToWideChar and …
11
votes
4answers
1k views
What is the best unicode library for C?
What is the best unicode library for C? Where "best" is defined by cross-platform support, compiler independence, and reasonable performance across a the most common languages in use.
10
votes
5answers
235 views
Am I correctly supporting UTF-8 in my PHP apps?
I would like to make sure that everything I know about UTF-8 is correct. I have been trying to use UTF-8 for a while now but I keep stumbling across more and more bugs and other weird things that make …
10
votes
4answers
374 views
Is it bad practice to use unicode symbols or shapes in a app?
There have been a few times where I've used unicode symbols in place of small icons in one of my Cocoa apps, either because it's easier to draw inline with text or because I didn't feel like firing up …
