GLib.NormalizeMode

Defines how a Unicode string is transformed in a canonical form, standardizing such issues as whether a character with an accent is represented as a base character and combining accent or as a single precomposed character. Unicode strings should generally be normalized before comparing them.

NormalizeMode.DEFAULT

standardize differences that do not affect the text content, such as the above-mentioned accent representation

NormalizeMode.NFD

another name for GLib.NormalizeMode.default

NormalizeMode.DEFAULT_COMPOSE

like GLib.NormalizeMode.default, but with composed forms rather than a maximally decomposed form

NormalizeMode.NFC

another name for GLib.NormalizeMode.default_compose

NormalizeMode.ALL

beyond GLib.NormalizeMode.default also standardize the "compatibility" characters in Unicode, such as SUPERSCRIPT THREE to the standard forms (in this case DIGIT THREE). Formatting information may be lost but for most text operations such characters should be considered the same

NormalizeMode.NFKD

another name for GLib.NormalizeMode.all

NormalizeMode.ALL_COMPOSE

like GLib.NormalizeMode.all, but with composed forms rather than a maximally decomposed form

NormalizeMode.NFKC

another name for GLib.NormalizeMode.all_compose