| Authors | Asmus Freytag (asmus@unicode.org) |
| Date | 2003-09-30 |
| This Version | http://www.unicode.org/reports/tr30-2.html |
| Previous Version | http://www.unicode.org/reports/tr30-1.html |
| Latest Version | http://www.unicode.org/reports/tr30/ |
| Revision | 2 |
Summary
This report identifies a set of character foldings, in other words, operations that map similar characters to a common target. Such operations are used to ignore certain distinctions between similar characters. The report also a provides an algorithm for applying these operations to searching.
Status
This document is a Draft Unicode Technical Report. Publication does not imply endorsement by the Unicode Consortium. This is a draft document which may be updated, replaced, or superseded by other documents at any time. This is not a stable document; it is inappropriate to cite this document as other than a work in progress.
A Unicode Technical Report (UTR) contains informative material. Conformance to the Unicode Standard does not imply conformance to any UTR. Other specifications, however, are free to make normative references to a UTR.
Please submit corrigenda and other comments with the online reporting form [Feedback]. Related information that is useful in understanding this document is found in [References]. For the latest version of the Unicode Standard see [Unicode]. For a list of current Unicode Technical Reports see [Reports]. For more information about versions of the Unicode Standard, see [Versions].
The foldings specified in this Technical Report cover Unicode, Version 4.0
[Notes to reviewers are indicated like this]
A list of current Unicode Technical Reports is found on http://www.unicode.org/reports/. For more information about versions of the Unicode Standard, see http://www.unicode.org/unicode/standard/versions/.
This report identifies a set of character foldings, in other words, operations that map similar characters to a common target. Such operations are used to ignore certain distinctions between similar characters and are useful for "fuzzy" or "loose" searches, among other things. Each of the folding operations specified in this report has well-understood properties, and is appropriate in specific contexts. For example some identifiers need case folding, some do not. Some text searches need to preserve superscript form such as the trademark symbol ™, while others do not. Not all of these folding operations may be appropriate in a give context. See Section 5.2 for some of the more problematic folding or expansion operations.
The report also a provides an algorithm for combining these operations for the purpose of searching or programmatic identifier matching. They combine canonical normalization with optional folding operations. This allows implementers to decide which folding option is useful for a particular purpose.
Foldings can be transient, for example the same folding can be applied to two strings before comparison, or they can be a permanent transformation of the text, for example when applying the Positional Forms Folding to converting legacy data that uses explicit Arabic positional shapes to the generic Arabic characters with implicit directionality.
For the purpose of fuzzy text matching, including both programmatic identifier matching and general text searching, it is often necessary to selectively ignore otherwise meaningful distinctions between related characters, for example upper and lower case, removal of accent marks, etc. This process can be called search term folding. Depending on the operation, different foldings need to be applied, and possible interactions must be carefully managed. False positive matches may be acceptable more often than false negative matches.
A significant aspect of string foldings for programmatic identifier matching is that the set of allowable characters is restricted. Issues that relate to identifier matching in particular are addressed specifically below.
Normalization [Normalization] is part of any robust search term folding algorithm (see section Section 4.1.1 Basic Folding Algorithm). However, there are some important differences between normalization and the foldings that make up search term folding. Normalization, particular the canonical forms (NFC or NFD) are often intended for permanent transformation of data, while search term folding is by nature transient. Further, unlike the other foldings considered here, normalization it is not context-independent, since the equivalences are not between characters, but character sequences.
As defined, the normalization forms offer only two broad levels of distinctions (they either preserve or do not preserve compatibility distinctions). The choice of which distinctions may be ignored for search term folding needs to be more specific; it depends on the nature of the operation. One size does not fit all.
For example, two of the normalization forms depend on compatibility mappings which replace character by their compatibility decompositions. Applying certain of these compatibility mappings may lead to unintended false positive matches, preventing their use in general text searches. In combination with whole word search it could even lead to unintended false negatives. (See Section 5.2 Problematical foldings).
Furthermore, normalization and case folding are defined as separate and independent operations, but case folding often occurs together with other foldings in search term folding. In order to avoid inconsistencies, search term folding needs to address the interaction of case folding with the other steps in the algorithm.
Search term folding includes canonical normalization; however, whether the normalized text is in the composed (NFC) or decomposed form (NFD) is of secondary importance in terms of defining the foldings. Due to the transient nature of search term folding, the distinction between NFC and NFD is immaterial, as long as the two forms are not mixed.
Like foldings, the comparisons at the heart of the Unicode Collation Algorithm [UCA] also define equivalences. One can derive a specific folding by applying the collation algorithm with a particular strength and specific tailorings. Foldings derived in this manner can be useful in searches that ignore similar distinctions to those ignored in collation. Such foldings are not subject of this report.
All terms not defined here are used as defined in the Unicode Standard or in the online [Glossary].
Folding operation — an idempotent context-independent string function.
Idempotent means that the output of the function is a string, and repeated applications of the same function produce the same output: F(F(S)) = F(S) for all S. Every folding establishes a set of equivalence classes that partitions all strings, where X = Y if and only if F(X) = F(Y)..
Codepoint count-preserving folding — a folding that folds any string to a string of equal number of code points.
Other foldings may replace individual characters by a character sequence.
Multigraph expansion — a multigraph expansion replaces a digraph or higher multigraph, such as double prime or triple prime, by its expansion into an equivalent sequence of base characters, in this case, two or three single prime characters.
The distinction from other expansions is that the character sequence is not a combining character sequence.
Provisional folding — a folding operation for which only a provisional definition exists.
The following notational conventions are used in this TR
| XXXX..YYYY | indicates an inclusive range |
| XXXX, YYYY | indicates an alternative |
| <cccc> | refers to a compatibility mapping tag as defined in [Aliases]. This should not be confused with a character code sequence of length 1, which would be <XXXX> where X is an upper case hex digit. |
| Xy | refers to a particular value for the General Category property defined in [UnicodeData], e.g. "Pd" |
| <+> | means a folding is contained in the Unicode data files, but its general use is not recommended |
| [CD] | Canonical Decomposition |
| [KD] | Compatibility Decomposition |
All specifications of algorithms are in terms of results—all implementations that achieve the same result are fully equivalent. In particular, implementations commonly use optimization techniques, such as normalizing and folding 'on demand'.
The basic algorithm for search term folding can be stated as
a. Apply optional folding operations
b. Apply canonical decomposition
c. Repeat (a) and (b) until stable
d. Apply composition if necessary
where each step is applied on the whole string, and applies to the result of the preceding operation. Implementations may be able to avoid step (c) by applying additional transformations.
For identifier folding, it is important to account for prohibited characters. This adds a new step (e). The modified basic algorithm then becomes:
a. Apply optional folding operations
b. Apply canonical decomposition
c. Repeat a and b until stable
d. Apply composition if necessary
e. Eliminate or flag forbidden characters
Foldings in step (a) can be modified to also disallow certain characters by mapping them to forbidden characters, which are then caught in step (e). Implementations may be able to avoid step (c) by applying additional transformations.
The following table summarizes the definition of a number of important and well-defined folding operations for which the data are availble in the Unicode Character Database[UCD]. Foldings that are multigraph expansions have been collected at the end of the table.
| Descriptive Name | Source Characters | Target Characters | Data file specifying the mapping |
|---|---|---|---|
| Accent removal | Latin/Greek/Cyrillic characters with canonical decomposition | base characters of [CD] | [UnicodeData] |
| Case folding | any | case fold according to CaseFolding.txt | [CaseFolding] |
| Canonical duplicates folding (e.g. Ohm - Omega) | 0374, 037E, 0387, 1FBE, 1FEF, 1FFD, 2000, 2001, 2126, 212A, 212B, 2329..232A | [CD] | [UnicodeData] |
| Dashes folding | Pd | U+002D | [UnicodeData] |
| Greek letterforms folding | 03D0..03D2, 03D5..03D6, 03F0..03F2, 03F4..03F5 | [KD] | [UnicodeData] |
| Hebrew Alternates folding | FB20..FB28 | [KD] | [UnicodeData] |
| Jamo folding | 3131..3183 | [CD] | [UnicodeData] |
| Math symbol folding | <font> | [KD] | [UnicodeData] |
| Native digit folding | Nd | substitute ASCII digit of same numeric property | [UnicodeData] |
| Non-break folding | <no-break> | [KD] | [UnicodeData] |
| Overline folding | FE49..FE4C | [KD] maps to: 203E |
[UnicodeData] |
| Positional Forms folding - includes Arabic ligatures |
<initial>, <medial>, <final>, <isolate> | [KD] | [UnicodeData] |
| Small forms folding | <small> | [KD] | [UnicodeData] |
| Space folding | Zs | U+0020 | [UnicodeData] |
| Spacing Accents <+> | 00AF,00B4,00B8,02D8..02DD, 037A,0384,1FBD,1FBE..1FC0, 1FFE,2017,203E,309B..309C | [KD] | [UnicodeData] |
| Subscript folding | <sub> | [KD] | [UnicodeData] |
| Symbol folding <+> | 00B5, 2107,2135..2138 | [KD] | [UnicodeData] |
| Underline folding | 2017, FE4D..FE4F | 005E | [UnicodeData] |
| Vertical forms folding | <vertical> | [KD] | [UnicodeData] |
| Multigraph expansions | |||
| - Circled symbols expansion | <circled> | [KD] | [UnicodeData] |
| - Dotted | 2488..249B | [KD] | [UnicodeData] |
| - Ellipsis expansion | 2024..2026 | [KD] | [UnicodeData] |
| - Fraction expansion | <fraction> | [KD] | [UnicodeData] |
| - Integral expansion | 222C..222D,222F..2230 | [KD] | [UnicodeData] |
| - Ligature expansion Misc. | 0587, 0675..0678, 0E33, 0EB3, 0EDC..0EDD, 0F77, 0F79, FB00..FB06, FB13..FB17, FB4F | [KD] | [UnicodeData] |
| - Parenthesized | 2474..2487,249C..24B5, 3200..3243 | [KD] | [UnicodeData] |
| - Prime expansion | 2033..2034,2036..2037 | [KD] | [UnicodeData] |
| - Roman numerals | 2160..2183 | [KD] | [UnicodeData] |
| - Squared | <square> | [KD] | [UnicodeData] |
| - Squared (unmarked) | 3358..3370, 33E0..33FE, 32C0..32CB | [KD] | [UnicodeData] |
| - Digraphs | 0132..0133, 013F..0140. 0149, 01C4..01CC, 01F1..01F3, 1E9A | [KD] | [UnicodeData] |
| - Other multigraphs, e.g. c/o, TEL |
203C, 2047..2049, 20A8, 2100..2101, 2103, 2105..2106, 2109, 2116, 2121 | [KD] | [UnicodeData] |
| Provisional foldings | |||
| Diacritic removal (includes stroke, hook, descender) | any | fold Latin/Greek/Cyrillic characters with diacritics to their related base character according to DiacriticFolding.txt | [DiacriticFolding] TBD |
| Han Radical folding | 2F00..2F5D, 2EF3, 2E9F | TBD | [RadicalFolding] TBD |
| Hiragana folding | Hiragana | Katakana | [HiraganaFolding] TBD |
| Katakana folding | Katakana | Hiragana | [KatakanaFolding] TBD |
| Letterforms folding | Variants of letter forms e.g. 017F (long s) |
fold to related base form e.g. 0073 (s) |
[LetterFolding] TBD |
| Simplified Han Folding | simplified Han characters | TBD (corresponding traditional characters) | [SimplifiedFolding] TBD |
| Superscript folding | <super>, plus modifier letters 02C0..02C1,06E5..06E6 plus other modifier letters (UPA) |
[KD] with some additions | [SuperScriptFolding] TBD |
| Suzhou Numeral folding | 3038..303A, 3021..3029 | TBD | [SuzhouFolding] TBD |
| Width folding | <wide>,<narrow>any | [KD] with additional handling of contraction for narrow kana sound marks | [WidthFolding] TBD |
Notes:
The most important guideline is "discriminate". Understand the effect before applying a folding. Do not apply any of these folding all at once just because it exists, and certainly never all of them at once. The following notes on individual foldings or issues may be of help in following this guideline.
The [CaseFolding] data file provides case folding information. For more information see Section 5.18 Case Mappings in [Unicode].
Diacritic folding goes beyond the decomposition and removal of accents, umlauts, cedillas etc. that is provided by the canonical decompositions, but also includes barred, slashed forms etc, as well as hooks, descenders, etc.
Greek letter forms should be folded for Greek text. They should not be folded for mathematical and scientific usage as doing so would conflate very distinct concepts. To give an example of common usage consider physics, which distinguishes angle encoded by theta and temperature encoded by theta symbol.
[Ed. note: In the datafile, letterforms need to have 'final sigma' and 'final, +alternate Hebrew' added to them. ]
Han Radical folding substitutes a Unified ideograph for a Han radical.
Simplified and traditional forms of Han ideographs are separately encoded in Unicode, even where they represent the same meaning. This folding would remove the distinction. In practice, there are additional differences in Han character usage between writers of simplified and traditional Han ideographs, some of which cannot be folded without context and semantic information. A simple 1:1folding is nevertheless useful for many purposes.
As results of historical development of the Han ideograph there are multiple variations of characters for the same concept, for example there are 47 variants for 'turtle'. Such folding would remove such variations. The process of defining such a folding for all such cases will be difficult and lengthy.
The Unicode Standard maintains duplications for certain Han ideographs based on the fact that they were separately encoded within a given source character set. A Han source separation folding would equivalence such separated characters.
Japanese Katakana and Hiragana are two generally equivalent syllabaries, where each Hiragana syllable has a corresponding Katakana syllable. Foldings in both directions are useful, depending on the situation. However, since Katakana are used to represent the pronunciation of foreign words in Japanese, there are more Katakana than Hiragana characters.
There is one important difference in orthography between the syllabaries, affecting the way the long syllables are expressed. Hiragana uses an additional vowel, while Katakana uses a length mark. If this is taken into account, the folding is no longer context free. In fact, these are better seen as examples of algorithmic transliterations, such as the ISCII transliterations between Indic scripts.
Semantically neutral foldings could be defined as those foldings that simply remove a distinction that is more or less purely an artifact of the encoding itself. Under the right circumstances, these foldings are in principle candidates for permanent data transformation. This is primarily true for the canonical decomposition and composition, but could also apply to text using the Arabic positional forms. If such a text is converted to use non-positional forms, but rendered via a standard Unicode rendering process, the appearance would be the same (except for deliberately odd combinations of positional shapes). In practice it is far more likely that the data containing the positional forms will display poorly on a system that expects characters with implicit positional shaping.
The following foldings can be considered semantically neutral
Note that Arabic positional folding, especially when intended as a permanent data transformation, may need to introduce ZWJ or ZWNJ characters.
Foldings based on tailored collation data would fold characters that are 'nearly equivalent' in a particular language. For example, a locale-based folding for Swedish could follow common practice in Sweden and match the following pairs of character sequences, among others, based on equivalence in pronunciation.
|
Ä |
Æ |
|
Ö |
Ø |
|
ss |
ß |
|
y |
ü |
|
v |
w |
In other words, locale-based foldings would be different for some user groups using the same script (in this case Latin). The recommended way to implement locale-based searching based on sorting tables is found in [Collation].
Compatibility decomposition provides a fixed combination of several foldings and expansions. It is in fact the source of most of the foldings in the table in section 4.0. There are two ways to subdivide compatibility decompositions:
The specifications in Section 5.0 uses the first method, whenever the compatibility tag is well defined and meaningful. Where it is too broad, e.g., for the <compat> tag, foldings are further subdivided by defining specific ranges of source characters.
Using compatibility decomposition is convenient, since existing algorithms for Normalization may provide them. However, the full decomposition includes several foldings that may not be appropriate for the given purpose. By selectively not applying the decomposition to certain character ranges given in Section 4.0, one can in effect limit the compatibility decomposition to only the desired foldings.
Some foldings can have unintended consequences, including inadvertent changes in the semantics of the text. In most cases, it is best to be conservative and avoid problematic foldings altogether. There are two general exceptions to this rule. The first is the case of identifier matching. If a folding has a prohibited character as one of the output characters, it will not match any legal identifier. Therefore, for properly restricted inputs, one may safely use fixed combinations of foldings, such as NFKC. The other exception is the case of more extensive string pre-processing, discussed below.
Fraction expansion as defined in the compatibility decompositions can lead to a drastic change of the semantics of a string and can lead to term boundary issues for searching. For example: Expanding the fraction in this string: DIGIT 5 + VULGAR FRACTION ONE QUARTER turns it into DIGIT 5 + DIGIT 1 + FRACTION SLASH + DIGIT 4. This now will be found by a search for "51". Because of the semantics of FRACTION SLASH the expansion changed the numeric value from "5 and a quarter" into "51 over 4". Fraction expansion is therefore best avoided altogether.
By modifying the fraction expansion from the standard compatibility decomposition and inserting an appropriate space character, for example THIN SPACE, before the fraction, it is possible to prevent the expanded fraction from coalescing with preceding digits. However, if there are no preceding digits, no THIN SPACE must be added, or strings containing the expanded fraction would no longer match strings with already expanded fractions which presumably would not contain THIN SPACE characters. Finally, any space character would be subject to any space folding, which, if present would introduce a SPACE character, possibly affecting the search term.
If a circled bullet character is simply replaced by its contents, as when CIRCLED DIGIT 5 is replaced by DIGIT 5, the separation from the surrounding text is lost, and the DIGIT 5 could run together with adjacent numbers. For bullet characters using parenthesized or dotted letters or digit, this issue is somewhat mitigated by fact that the bullet itself contains punctuation. Bullet characters are commonly used like footnote marks to refer to other text, in other words, they do not occur just at the beginning of bulleted lines.
Spacing accents are mapped by compatibility decomposition to SPACE followed by a non-spacing accent. This inappropriately introduces a space character into the term, as well as introducing non-spacing marks where none were in the data before. The former is especially problematic, where the matching operation is affected by these spaces and combining characters.
The set of compatibility decompositions includes the folding of letterlike mathematical symbols to their nearest ASCII or Hebrew equivalent. In particular the Hebrew characters used as letterlike symbols do not have RIGHT TO LEFT directionality and the set of such letters in mathematical usage is sufficiently restricted that such folding makes little sense in math, except in pure 'looks like' style searches.
Unicode contains many clusters, e.g. square symbols, some of the letterlike characters that are made up of several characters. 'Decomposing' these may or may not be the right thing for search equivalence. Parenthesized characters and numbers would probably be immune to the term boundaries issues raised earlier, but the story is less clear for others.
For more information on Jamo expansion see Section 11.4 Hangul in [Unicode].
To a limited extent, the problems surrounding bullet expansion can be mitigated by inserting a THIN SPACE around the expansion to set the expanded text off from the surrounding text. However, this cannot be applied together with any space folding, as otherwise the THIN SPACE may become SPACE and might be considered a search term delimiter.
| [Aliases] | Data files ftp://ftp.unicode.org/Public/UNIDATA/PropertyAliases.txt and http://www.unicode.org/Public/UNIDATA/PropertyValueAliases.txt |
| [CaseFolding] | Data file ftp://ftp.unicode.org/Public/UNIDATA/CaseFolding.txt |
| [Collation] | Mark Davis, Unicode Technical Report #10:
Collation, http://www.unicode.org/reports/tr10> |
| [Charts] | The online code charts can be found at http://www.unicode.org/charts/ An index to characters names with links to the corresponding chart is found at http://www.unicode.org/charts/charindex.html |
| [DiacriticRemoval] | Ed. The data file containing the data for Diacritic removal is TBD. |
| [EAW] | Unicode Standard Annex #11, East
Asian Width. http://www.unicode.org/reports/tr11 For a definition of East Asian Width |
| Feedback] | Reporting Errors and Requesting
Information Online http://www.unicode.org/reporting.html |
| [FAQ] | Unicode Frequently Asked Questions http://www.unicode.org/unicode/faq/ For answers to common questions on technical issues. |
| [Glossary] | Unicode Glossary http://www.unicode.org/glossary/ For explanations of terminology used in this and other documents. |
| [Normalization] | Unicode Standard Annex #15: Unicode
Normalization Forms http://www.unicode.org/reports/tr15/ |
| HiraganaFolding | Ed. The data file containing the data for Hiragana to Katakana Folding is TBD. |
| [KatakanaFolding] |
Ed. The data file containing the data for Katakana to Hiragana Folding is TBD. |
| [WidthFolding] |
Ed. The data file containing the data for Width Folding is TBD. |
| [Reports] | Unicode Technical Reports http://www.unicode.org/reports/ For information on the status and development process for technical reports, and for a list of technical reports. |
| [SimplifiedFolding] | Ed.: The data file containing the data for simplified to traditional folding is TBD. |
| [SuperScriptFolding] | Ed.: Superscript folding needs to cover not only characters given a <super> compatibility decomposition, but also other superscript characters, like modifier letters. A data file for the folding is TBD. |
| [SuzhouFolding] | Ed.: The data file containing the data for Suzhou Folding is TBD. |
| [Unicode] | The Unicode Standard, Version 4.0, (Reading, Massachusetts: Addison-Wesley Developers Press 2003, ISBN: 0-321-18578-1) or online as http://www.unicode.org/versions/Unicode4.0.0/ |
| [UCA] | Unicode Technical Standard #10: Unicode
Collation Algorithm http://www.unicode.org/reports/tr10/ |
| [UCD] | Unicode Character Database. http://www.unicode.org/Public/UNIDATA/UnicodeCharacterDatabase.html For and overview of the Unicode Character Database and a list of its associated files |
| [UnicodeData] | http://www.unicode.org/Public/UNIDATA/UnicodeData.txt This file contains the combining class and decomposition information needed to carry out canonical and compatibility decompositions as defined in chapter 3 of the Unicode Standard. |
| [UXML] | Unicode Technical Report #20: Unicode
in XML and other Markup Languages http://www.unicode.org/reports/tr20/ |
| [Versions] | Versions of the Unicode Standard http://www.unicode.org/unicode/standard/versions/ For details on the precise contents of each version of the Unicode Standard, and how to cite them. |
| [XML] | Tim Bray, Jean Paoli, C. M. Sperberg-McQueen, Eve Maler, Eds., Extensible Markup Language (XML) 1.0 (Second Edition), W3C Recommendation 6-October-2000, http://www.w3.org/TR/REC-xml |
Changes from Tracking Number
1 Updated to Unicode 4.0, updated Status and References, removed conformance section, added detail throughout
0 First version
Copyright © 2001-2003 Unicode, Inc. All Rights Reserved. The Unicode Consortium makes no expressed or implied warranty of any kind, and assumes no liability for errors or omissions. No liability is assumed for incidental and consequential damages in connection with or arising out of the use of the information or programs contained or accompanying this technical report. The Unicode Terms of Use apply.
Unicode and the Unicode logo are trademarks of Unicode, Inc., and are registered in some jurisdictions.