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 what this means for applications. For example, in which cases do I want "Canonical Equivalence" instead of "Compatibility equivalence", or vis-versa?

link|improve this question

126  
w͢͢͝h͡o͢͡ ̸͢k̵͟n̴͘ǫw̸̛s͘ ̀́w͘͢ḩ̵a҉̡͢t ̧̕h́o̵r͏̵rors̡ ̶͡͠lį̶e͟͟ ̶͝in͢ ͏t̕h̷̡͟e ͟͟d̛a͜r̕͡k̢̨ ͡h̴e͏a̷̢̡rt́͏ ̴̷͠ò̵̶f̸ u̧͘ní̛͜c͢͏o̷͏d̸͢e̡͝?͞ – ObscureRobot Oct 28 '11 at 15:25
uptick for zalgoisms – Kyle Oct 29 '11 at 5:31
feedback

6 Answers

up vote 75 down vote accepted

Everything You Never Wanted to Know about Unicode Normalization

Canonical Normalization

Unicode includes multiple ways to encode some characters, most notably accented characters. Canonical normalization changes the code points into a canonical encoding form. The resulting code points should appear identical to the original ones barring any bugs in the fonts or rendering engine.

When To Use

Because the results appear identical, it is always safe to apply canonical normalization to a string before storing or displaying it, as long as you can tolerate the result not being bit for bit identical to the input.

Canonical normalization comes in 2 forms: NFD and NFC. The two are equivalent in the sense that one can convert between these two forms without loss. Comparing two strings under NFC will always give the same result as comparing them under NFD.

NFD

NFD has the characters fully expanded out. This is the faster normalization form to calculate, but the results in more code points (i.e. uses more space).

If you just want to compare two strings that are not already normalized, this is the preferred normalization form unless you know you need compatability normalization.

NFC

NFC recombines code points when possible after running the NFD algorithm. This takes a little longer, but results in shorter strings.

Compatibility Normalization

Unicode also includes many characters that really do not belong, but were used in legacy character sets. Unicode added these to allow text in those character sets to be processed as Unicode, and then be converted back without loss.

Compatibility normalization converts these to the corresponding sequence of "real" characters, and also performs canonical normalization. The results of compatibility normalization may not appear identical to the originals.

Characters that include formatting information are replaced with ones that do not. For example the character gets converted to 9. Others don't involve formatting differences. For example the roman numeral character is converted to the regular letters IX.

Obviously, once this transformation has been performed, it is no longer possible to losslessly convert back to the original character set.

When to use

The Unicode Consortium suggests thinking of compatibility normalization like a ToUpperCase transform. It is something that may be useful in some circumstances, but you should not just apply it willy-nilly.

An excellent use case would be a search engine since you would probably want a search for 9 to match .

One thing you should probably not do is display the result of applying compatibility normalization to the user.

NFKC/NFKD

Compatibility normalization form comes in two forms NFKD and NFKC. They have the same relationship as between NFD and C.

Any string in NFKC is inherently also in NFC, and the same for the NFKD and NFD. Thus NFKD(x)=NFD(NFKC(x)), and NFKC(x)=NFC(NFKD(x)), etc.

Conclusion

If in doubt, go with canonical normalization. Choose NFC or NFD based on the space/speed tradeoff applicable, or based on what is required by something you are interoperating with.

link|improve this answer
10  
A quick reference to remember what the abbreviations stand for: NF = normalized form D = decompose (decompress), C = compose (compress) K = compatibility (since "C" was taken). – Mike Spross Oct 29 '11 at 2:38
Read four sentences, gave you an upvote. You deserve it. – Kyle Oct 29 '11 at 5:31
What does "this is the pr" mean? – Chris Frederick Oct 30 '11 at 6:43
5  
You always want to NFD all strings on input as the very first thing, and NFC all strings output as the very last thing. This is well known. – tchrist Oct 31 '11 at 1:09
@Chris, sorry about that. I must have lost part of that sentence while composing. Fixed now. – Kevin Cathcart Oct 31 '11 at 18:37
show 2 more comments
feedback

Some characters, for example a letter with an accent (say, é) can be represented in two ways - a single code point U+00E9 or the plain letter followed by a combining accent mark U+0065 U+0301. Ordinary normalization will choose one of these to always represent it (the single code point for NFC, the combining form for NFD).

For characters that could be represented by multiple sequences of base characters and combining marks (say, "s, dot below, dot above" vs putting dot above then dot below or using a base character that already has one of the dots), NFD will also pick one of these (below goes first, as it happens)

The compatibility decompositions include a number of characters that "shouldn't really" be characters but are because they were used in legacy encodings. Ordinary normalization won't unify these (to preserve round-trip integrity - this isn't an issue for the combining forms because no legacy encoding [except a handful of vietnamese encodings] used both), but compatibility normalization will. Think like the "kg" kilogram sign that appears in some East Asian encodings (or the halfwidth/fullwidth katakana and alphabet), or the "fi" ligature in MacRoman.

See http://unicode.org/reports/tr15/ for more details.

link|improve this answer
1  
This is indeed the correct answer. If you use just canonical normalization on text that originated in some legacy character set, the result can be converted back into that character set without loss. If you use compatibility decomposition, you end up without any compatibility characters, but it is no longer possible to convert back to the original character set without loss. – Kevin Cathcart Oct 28 '11 at 18:21
@tchrist My answer covers this, with the fact that the dot below goes first in the "s with two dots" example. – Random832 Oct 31 '11 at 3:06
feedback

Normal forms (of Unicode, not databases) deal primarily (exclusively?) with characters that have diacritical marks. Unicode provides some characters with "built in" diacritical marks, such as U+00C0, "Latin Capital A with Grave". The same character can be created from a `Latin Capital A" (U+0041) with a "Combining Grave Accent" (U+0300). That means even though the two sequences produce the same resulting character, a byte-by-byte comparison will show them as being completely different.

Normalization is an attempt at dealing with that. Normalizing assures (or at least tries to) that all the characters are encoded the same way -- either all using a separate combining diacritical mark where needed, or all using a single code point wherever possible. From a viewpoint of comparison, it doesn't really matter a whole lot which you choose -- pretty much any normalized string will compare properly with another normalized string.

In this case, "compatibility" means compatibility with code that assumes that one code point equals one character. If you have code like that, you probably want to use the compatibility normal form. Although I've never seen it stated directly, the names of the normal forms imply that the Unicode consortium considers it preferable to use separate combining diacritical marks. This requires more intelligence to count the actual characters in a string (as well as things like breaking a string intelligently), but is more versatile.

If you're making full use of ICU, chances are that you want to use the canonical normal form. If you're trying to write code on your own that (for example) assumes a code point equals a character, then you probably want the compatibility normal form that makes that true as often as possible.

link|improve this answer
So this is the part where the Grapheme Functions come in then. Not only is the character more bytes than ASCII - but multiple sequences can be a single character right? (As opposed to the MB string functions.) – Xeoncross Oct 28 '11 at 15:39
4  
No, the 'one code point is one character' corresponds roughly to NFC (the one with the combining marks is NFD, and neither of them is "compatibility") - The compatibility normalizations NFKC/NFKD are a different issue; compatibility (or lack thereof) for legacy encodings that e.g. had separate characters for greek mu and 'micro' (that's a fun one to bring up because the "compatibility" version is the one that's in the Latin 1 block) – Random832 Oct 28 '11 at 15:42
@Random832: Oops, quite right. I should know better than to go from memory when I haven't worked with it for the last year or two. – Jerry Coffin Oct 28 '11 at 16:18
@Random832 That is not true. Your “roughly” is too out there. Consider the two graphemes, ō̲̃ and ȭ̲. There are many many ways to write each of those, of which exactly one each is NFC and one NFD, but others also exist. It no case is that only one code point. NFD for the first is "o\x{332}\x{303}\x{304}", and NFC is "\x{22D}\x{332}". For the second NFD is "o\x{332}\x{304}\x{303}" and NFC is "\x{14D}\x{332}\x{303}". However, many non-canonical possibilities exist which are canonically equivalent to these. Normalization allows binary comparison of canonically equivalent graphemes. – tchrist Oct 31 '11 at 1:20
feedback

If two unicode strings are canonically equivalent the strings are really the same, only using different unicode sequences. For example Ä can be represented either using the character Ä or a combination of A and ◌̈.

If the strings are only compatibility equivalent the strings aren't necessarily the same, but they may be the same in some contexts. E.g. ff could be considered same as ff.

So, if you are comparing strings you should use canonical equivalence, because compatibility equivalence isn't real equivalence.

But if you want to sort a set of strings it might make sense to use compatibility equivalence as the are nearly identical.

link|improve this answer
feedback

This is actually fairly simple. UTF-8 actually has several different representations of the same "character". (I use character in quotes since byte-wise they are different, but practically they are the same). An example is given in the linked document.

The character "Ç" can be represented as the byte sequence 0xc387. But it can also be represented by a C (0x43) followed by the byte sequence 0x8ccca7. So you can say that 0xc387 and 0x438ccca7 are the same character. The reason that works, is that 0x8ccca7 is a combining mark; that is to say it takes the character before it (a C here), and modifies it.

Now, as far as the difference between canonical equivalence vs compatibility equivalence, we need to look at characters in general.

There are 2 types of characters, those that convey meaning through the value, and those that take another character and alter it. So 9 is a meaningful character. A super-script ⁹ takes that meaning and alters it by presentation. So canonically they have different meanings, but they still represent the base character.

So canonical equivalence is where the byte sequence is rendering the same character with the same meaning. Compatibility equivalence is when the byte sequence is rendering a different character with the same base meaning (even though it may be altered). So the 9 and ⁹ are compatibility equivalent since they both mean "9", but are not canonically equivalent since they don't have the same representation...

Hope that helps...

link|improve this answer
@tchrist: Read the answer again. I never even made mention of the different ways to represent the same code point. I said there are multiple ways of representing the same printed character (via combinators and multiple characters). Which applies to both UTF-8 and Unicode. So your downvote and comment don't really apply at all to what I said. In fact, I basically was making the same point that the top poster here made (albeit not as well)... – ircmaxell Oct 31 '11 at 13:40
feedback

Whether canonical equivalence or compatibility equivalence is more relevant to you depends on your application. The ASCII way of thinking about string comparisons roughly maps to canonical equivalence, but Unicode represents a lot of languages. I don't think it is safe to assume that Unicode encodes all languages in a way that allows you to treat them just like western european ASCII.

Figures 1 and 2 provide good examples of the two types of equivalence. Under compatibility equivalence, it looks like the same number in sub- and super- script form would compare equal. But I'm not sure that solve the same problem that as the cursive arabic form or the rotated characters.

The hard truth of Unicode text processing is that you have to think deeply about your application's text processing requirements, and then address them as well as you can with the available tools. That doesn't directly address your question, but a more detailed answer would require linguistic experts for each of the languages you expect to support.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.