Tagged Questions
Unicode is intended to be a universal character set for describing all the characters required for written text incorporating all writing systems, technical symbols and punctuation.
597
votes
15answers
46k views
Twitter image encoding challenge [closed]
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 ...
182
votes
7answers
37k views
Why does modern Perl avoid UTF-8 by default?
I wonder why most modern solutions built using Perl don't enable UTF-8 by default.
I understand there are many legacy problems for core Perl scripts, where it may break things. But, from my point of ...
122
votes
11answers
38k views
std::wstring VS std::string
I am not able to understand 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 should ...
63
votes
6answers
2k views
What is normalized UTF-8 all about?
The ICU project (which also now has a PHP library) contains the classes needed to help normalize UTF-8 strings to make it easier to compare values when searching.
However, I'm trying to figure out ...
45
votes
11answers
2k views
44
votes
11answers
57k views
Reading Email using Pop3 in C#
I am looking for a method of reading emails using Pop3 in C# 2.0. Currently, I am using code found in CodeProject. However, this solution is less than ideal. The biggest problem is that it doesn't ...
41
votes
2answers
6k views
What is the _snowman param in Rails 3 forms for?
In Rails 3 (currently using Beta 4) I see that when using the form_tag or form_for helpers there is a hidden field named _snowman with the value of ☃ (unicode \x9731) showing up.
So, what is this ...
40
votes
5answers
12k views
What is the best way to remove accents in a python unicode string?
I have a unicode string in python, and I would like to remove all the accents (diacritics).
I found on the Web an elegant way to do this in Java:
convert the unicode string to its long normalized ...
39
votes
17answers
2k 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 ...
38
votes
10answers
4k views
How do I sort unicode strings alphabetically in Python?
Python sorts by byte value by default, which means é comes after z and other equally funny things. What is the best way to sort alphabetically in Python?
Is there a library for this? I couldn't find ...
35
votes
10answers
4k 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:
ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ...
34
votes
9answers
826 views
How to count characters in a unicode string in C
Lets say I have a string:
char theString[] = "你们好āa";
Given that my encoding is utf-8, this string is 12 bytes long (the three hanzi characters are three bytes each, the latin character with the ...
34
votes
4answers
29k views
How can I change a file's encoding with vim?
I'm used to using vim to modify a file's line endings:
$ file file
file: ASCII text, with CRLF line terminators
$ vim file
:set ff=mac
:wq
$ file file
file: ASCII text, with CR line terminators
Is ...
33
votes
10answers
9k views
Is TCHAR still relevant?
I'm new to Windows programming and after reading the Petzold book I wonder:
is it still good practice to use the TCHAR type and the _T() function to declare strings or if I should just use the ...
32
votes
10answers
5k 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 ...
32
votes
8answers
16k views
Best way to convert text files between character sets?
What is the fastest, easiest tool or method to convert text files between character sets?
Specifically, I need to convert from UTF-8 to ISO-8859-15 and vice versa.
Everything goes: one-liners in ...
32
votes
12answers
3k 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 ...
30
votes
2answers
504 views
Is IIS performing an illegal character substitution? If so, how to stop it?
Context: ASP.NET MVC running in IIS, with a a UTF-8 %-encoded URL.
Using the standard project template, and a test-action in HomeController like:
public ActionResult Test(string id)
{
return ...
30
votes
9answers
20k views
HTML: Is there an ascii character for a up/down triangle (arrow)?
I'm looking for an html/ascii character which is a triangle up and down so that I can use it as a toggle switch.
I found ↑, and ↓ - but those have an arrow "stem". I'm looking just for the ...
30
votes
4answers
22k views
What is the difference between _tmain() and main() in C++?
If I run my C++ application with the following main() method everything is OK:
int main(int argc, char *argv[])
{
cout << "There are " << argc << " arguments:" << endl;
...
28
votes
9answers
8k views
complete, monospaced Unicode font? [closed]
I'm looking for a good programming font that lets me add comments and string literals in Unicode, usually Japanese and Chinese along with some Latin and Cyrillic languages.
So far the situation seems ...
28
votes
5answers
8k views
27
votes
7answers
3k 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 ...
26
votes
8answers
2k views
Should Unicode be allowed in usernames?
Why do most (all?) websites only support usernames in ASCII? Are there any security considerations if an admin decides to start accepting Unicode usernames?
24
votes
4answers
761 views
Why does Java allow control characters in its identifiers?
The Mystery
In exploring precisely which characters were permitted in Java identifiers, I have stumbled upon something so extremely curious that it seems nearly certain to be a bug.
I’d expected to ...
24
votes
5answers
829 views
Haskell, Char, Unicode, and Turkish
For the Char data-type, how do I specify that I want to use the Turkish i instead of the English i for the toLower and toUpper functions?
24
votes
3answers
4k views
Python __str__ versus __unicode__
Is there a python convention for when you should implement __str__() versus __unicode__(). I've seen classes override __unicode__() more frequently than __str__() but it doesn't appear to be ...
24
votes
5answers
5k views
Can I make git recognize a UTF-16 file as text?
I'm tracking a Virtual PC virtual machine file (*.vmc) in git, and after making a change git identified the file as binary and wouldn't diff it for me. I discovered that the file was encoded in ...
23
votes
4answers
2k views
Unicode equivalents for \w and \b in Java regular expressions?
Many modern regex implementations interpret the \w character class shorthand as "any letter, digit, or connecting punctuation" (usually: underscore). That way, a regex like \w+ matches words like ...
23
votes
5answers
1k 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 ...
23
votes
5answers
9k views
What is the proper way to URL encode Unicode characters?
I know of the non-standard %uxxxx scheme but that doesn't seem like a wise choice since the scheme has been rejected by the W3C.
Some interesting examples:
The heart character.
If I type this into ...
23
votes
3answers
6k views
What is the best unicode library for C? [closed]
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.
23
votes
5answers
38k views
Difference between BYTE and CHAR in column datatypes
In Oracle, what is the difference between :
CREATE TABLE CLIENT
(
NAME VARCHAR2(11 BYTE),
ID_CLIENT NUMBER
)
and
CREATE TABLE CLIENT
(
NAME VARCHAR2(11 CHAR), -- or even VARCHAR2(11)
ID_CLIENT ...
22
votes
9answers
711 views
What does sorting mean in double-byte languages?
I have some code that sorts table columns by object properties. It occurred to me that in Japanese or Chinese (non-alphabetical languages), the strings that are sent to the sort function would be ...
22
votes
3answers
6k views
What's the difference between utf8_general_ci and utf8_unicode_ci
Between utf8_general_ci and utf8_unicode_ci, are there any differences in terms of performance?
22
votes
6answers
11k views
what's the difference between encode/decode? (python 2.x)
I've never been sure that I understand the difference between str/unicode decode and encode.
I know that str().decode() is for when you have a string of bytes that you know has a certain character ...
22
votes
2answers
6k views
Difference between Char.IsDigit() and Char.IsNumber() in C#
What's the difference between Char.IsDigit() and Char.IsNumber() in C#?
22
votes
9answers
19k views
How to check if a string in Python is in ASCII?
I am fighting with Python to understand how do I check whether a string is in ASCII or not.
I am aware of ord(), however when I try ord('é'), I have TypeError: ord() expected a character, but string ...
21
votes
4answers
4k views
Unicode characters in URLs
In 2010, would you serve URLs containing UTF-8 characters in a large web portal?
Unicode characters are forbidden as per the RFC on URLs (see here). They would have to be percent encoded to be ...
21
votes
6answers
6k views
utf-8 vs Unicode
I have heard conflicting opinions from people - according to wikipedia, see here
there are the same thing. Are they? can someone clarify?
21
votes
7answers
2k views
Do UTF-8,UTF-16, and UTF-32 Unicode encodings differ in the number of characters they can store?
Okay. I know this looks like the typical "Why didn't he just Google it or go to www.unicode.org and look it up?" question, but for such a simple question the answer still eludes me after checking both ...
20
votes
3answers
516 views
Rendering Devanagari ligatures (Unicode) in Java Swing JComponent on Mac OS X
I'm trying to get Devanagari ligatures (in Unicode strings) rendered correctly on Mac OS X 10.6.
The strings are drawn on a JComponent and take RenderingHints for Antialiasing. The ligatures are ...
20
votes
6answers
29k views
Unicode (utf8) reading and writing to files in python
I'm having some brain failure in understanding reading and writing text to a file (Python 2.4).
# the string, which has an a-acute in it.
ss = u'Capit\xe1n'
ss8 = ss.encode('utf8')
repr(ss), ...
20
votes
9answers
13k 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 ...
19
votes
4answers
1k views
Why is python decode replacing more than the invalid bytes from an encoded string?
Trying to decode an invalid encoded utf-8 html page gives different results in
python, firefox and chrome.
The invalid encoded fragment from test page looks like 'PREFIX\xe3\xabSUFFIX'
>>> ...
19
votes
3answers
3k views
Text to a PNG on App Engine (Python)
Note: I am cross-posting this from App Engine group because I got no answers there.
As part of my site about Japan, I have a feature where the user can
get a large PNG for use as desktop background ...
19
votes
6answers
3k views
Should I use accented characters in URLs?
When one creates web content in languages different than English the problem of search engine optimized and user friendly URLs emerge.
I'm wondering whether it is the best practice to use de-accented ...
19
votes
1answer
9k views
urllib2 read to Unicode
I need to store the content of a site that can be in any language. And I need to be able to search the content for a Unicode string.
I have tried something like:
import urllib2
req = ...
19
votes
6answers
9k views
Is there a Windows command shell that will display Unicode characters?
Assuming I have fonts installed which have the appropriate glyphs in them, is there a command shell for Windows XP that will display Unicode characters? At a minimum, two things that should display ...
18
votes
2answers
599 views
fopen for everything - is this possible?
I used to programing windows, but I want to try my hand on making a cross-platform application. And I have some questions, if you don't mind:
Question 1
Is there some way to open UNICODE\ASCII file ...