I notice a bug in adding a recent comment related to this answer, that the silly SᴛᴀᴄᴋOᴠᴇʀꜰʟᴏᴡ couldn’t couldn’t count characters correctly. It is counting separate UTF‑16 code units, which are not characters at all. That means it was counting some code points as one character each and but others as two characters each.

This is really, really incorrect. A code point is a character. A user visible character must at the very least be a single Unicode code point, never anything less. And preferably, it should probably be an extended grapheme cluster, too. That is, several code points make up a character, but never do several characters make up a code point. Plus using extended grapheme clusters in your counting would avoid the other bug whereby certain NFC sequences are more 1st-classy than others. That shouldn’t happen either. Just because the EGC takes two code points to make a grapheme in NFC but ñ takes one is completely immaterial to the character count. Both are one grapheme.

I assume this all comes from working in some sort of dumb UTF‑16 language, which goes out of its way to break the abstraction of logical code points and imposing an incorrect abstraction of one or another underlying serialization scheme, something which should always be completely hidden from the user, being a mere accident of implementation.

It is no more appopriate to talk about characters in 16‑bit code units than in 8‑bit ones. Both are wrong. A character is a character, and anything that chops that more finely than a Unicode code point is a user-inferface error.

These all have the same number of characters after the colon, and should never be counted differently:

                   Normal: Stack Overflow
               Small Caps: Sᴛᴀᴄᴋ Oᴠᴇʀꜰʟᴏᴡ
            Double-Struck: 𝕊𝕥𝕒𝕔𝕜 𝕆𝕧𝕖𝕣𝕗𝕝𝕠𝕨
                Monospace: 𝚂𝚝𝚊𝚌𝚔 𝙾𝚟𝚎𝚛𝚏𝚕𝚘𝚠
               Sans-Serif: 𝖲𝗍𝖺𝖼𝗄 𝖮𝗏𝖾𝗋𝖿𝗅𝗈𝗐
        Sans-Serif Italic: 𝘚𝘵𝘢𝘤𝘬 𝘖𝘷𝘦𝘳𝘧𝘭𝘰𝘸
          Sans-Serif Bold: 𝗦𝘁𝗮𝗰𝗸 𝗢𝘃𝗲𝗿𝗳𝗹𝗼𝘄
   Sans-Serif Bold Italic: 𝙎𝙩𝙖𝙘𝙠 𝙊𝙫𝙚𝙧𝙛𝙡𝙤𝙬
                   Script: 𝒮𝓉𝒶𝒸𝓀 𝒪𝓋𝑒𝓇𝒻𝓁ℴ𝓌
                   Italic: 𝑆𝑡𝑎𝑐𝑘 𝑂𝑣𝑒𝑟𝑓𝑙𝑜𝑤
                     Bold: 𝐒𝐭𝐚𝐜𝐤 𝐎𝐯𝐞𝐫𝐟𝐥𝐨𝐰
              Bold Italic: 𝑺𝒕𝒂𝒄𝒌 𝑶𝒗𝒆𝒓𝒇𝒍𝒐𝒘
                  Fraktur: 𝔖𝔱𝔞𝔠𝔨 𝔒𝔳𝔢𝔯𝔣𝔩𝔬𝔴
             Bold Fraktur: 𝕾𝖙𝖆𝖈𝖐 𝕺𝖛𝖊𝖗𝖋𝖑𝖔𝖜

Code that treads code points from one plane differently than it treats code points from some other plane is   𝕚𝕡𝕤𝕠    𝕗𝕒𝕔𝕥𝕠  buggy. See my point ﹟𝟜𝟡 in my long list of brokennesses. This is something the Java people are always screwing up. I’m convinced it’s a code-smell that derives from misunderstanding UTF‑16.

Please fix.

share|improve this question
I don't get why you singled out Java people. I don't think any dev group is particularly at this sort of thing. – Some Helpful Commenter Jun 12 '11 at 1:12
Easy fix: report the number of "bytes", rather than the number of "characters". – Adam Davis Jun 12 '11 at 1:28
@Conrad: Because I keep coming across this same bug in Java code. They are confused about what characters are because of the UCS-2/UTF-16 botch-up. I have never seen this sort of screw-up happen in any UTF-8 or UTF-32 environment. It is a brainbug peculiar to UTF-16. – tchrist Jun 12 '11 at 1:46
@Adam: That would be worse than stupid. If you are going to give people character counts, then for goodness' sake count correctly. Bytes have no place here, only characters. – tchrist Jun 12 '11 at 1:47
1  
For anyone who wants proof: copy/paste the top Stack Overflow into a comment, then delete it and C&P the third one. – John Jun 12 '11 at 3:54
For a site that is mostly English, why waste bandwidth on UTF-16? – WGroleau Jun 12 '11 at 19:42
@WGroleau For Über smilies? ٩(-̮̮̃•̃). – Some Helpful Commenter Jun 12 '11 at 22:03
@WGroleau: There should be no UTF-16. There should only be Unicode, which is very much needed. In fact, it would be insulting not to have it. It is a deeply deluded and utterly repulsive myth that Unicode is for the non-English world. English needs it too. This current problem is a super-common UTF-16 programming mistake, one that would never be made in UTF-8 or UTF-32! It really needs fixing although not at high priority. You would hope SO would have a better grasp of character handling that this betrays, so it’s a bit embarrassing to boot. UTF-16 programmers need educating. – tchrist Jun 12 '11 at 23:40
1  
@tchrist. Some Joel Spolsky guy seems to feel as passionately as you do "if you are a programmer working in 2003 and you don't know the basics of characters, character sets, encodings, and Unicode, and I catch you, I'm going to punish you by making you peel onions for 6 months in a submarine. I swear I will." – Some Helpful Commenter Jun 13 '11 at 17:59
1  
@Conrad It’s now eight years later, and the situation really is no better. Look at the FIFTY‐TWO points in my “Assume Brokenness” section in this answer, almost all of which apply to any programming language, not just to Perl, as they are inherent to the Unicode problemspace. I work with Unicode daily, and the vast ignorance about it is to cry for. I bet I have a desk‐shaped impression from repeatedly banging my forehead against it because of how stupid people are at Unicode. Weep! – tchrist Jun 17 '11 at 18:42

You must log in to answer this question.

Browse other questions tagged