International Components for Unicode


International Components for Unicode is an open-source project of mature C/C++ and Java libraries for Unicode support, software internationalization, and software globalization. ICU is widely portable to many operating systems and environments. It gives applications the same results on all platforms and between C, C++, and Java software. The ICU project is a technical committee of the Unicode Consortium and sponsored, supported, and used by IBM and many other companies.
ICU provides the following services: Unicode text handling, full character properties, and character set conversions; Unicode regular expressions; full Unicode sets; character, word, and line boundaries; language-sensitive collation and searching; normalization, upper and lowercase conversion, and script transliterations; comprehensive locale data and resource bundle architecture via the Common Locale Data Repository ; multi-calendar and time zones; and rule-based formatting and parsing of dates, times, numbers, currencies, and messages. ICU provided complex text layout service for Arabic, Hebrew, Indic, and Thai historically, but that was deprecated in version 54, and was completely removed in version 58 in favor of HarfBuzz.
ICU provides more extensive internationalization facilities than the standard libraries for C and C++. ICU 67 supports Unicode 13.0 and handles removal of Great Britain from EU regions. ICU 64 supports Unicode 12.0, while ICU 64.2 added support for Unicode 12.1, i.e. the single new symbol for current Japanese Reiwa era. ICU 58 is the last version to support older platforms such as Windows XP, Windows Vista. Support for AIX, Solaris and z/OS is also limited in later versions.
ICU has historically used UTF-16, and still does only for Java; while for C/C++ UTF-8 is supported, including the correct handling of "illegal UTF-8".

Origin and development

After Taligent became part of IBM in early 1996, Sun Microsystems decided that the new Java language should have better support for internationalization. Since Taligent had experience with such technologies and were close geographically, their Text and International group were asked to contribute the international classes to the Java Development Kit as part of the JDK 1.1 internationalization APIs. A large portion of this code still exists in the and packages. Further internationalization features were added with each later release of Java.
The Java internationalization classes were then ported to C++ and C as part of a library known as ICU4C. The ICU project also provides ICU4J, which adds features not present in the standard Java libraries. ICU4C and ICU4J are very similar, though not identical; for example, ICU4C includes a Regular Expression API, while ICU4J does not. Both frameworks have been enhanced over time to support new facilities and new features of Unicode and Common Locale Data Repository.
ICU was released as an open-source project in 1999 under the name IBM Classes for Unicode. It was later renamed to International Components For Unicode. In May, 2016, the ICU project joined the Unicode consortium as technical committee ICU-TC, and the library sources are now distributed under the Unicode license.

MessageFormat

A part of ICU is the MessageFormat class, a "localization 2.0" formatting system that allows for any number of arguments to control the plural form or more general switch-case-style selection for things like grammatical gender. These statements can be nested. A JavaScript port of this library is commonly used by Angular.js developers in combination with, so that the simple key-based library can handle nuanced localization inputs. An example for this system can look like:

  1. Using YAML for simplicity of example.
hello: Hello, !
  1. offset allows the categories to be subtracted by the specified amount before being processed. It does not, however, affect the exact-match system.
party: has invited to party.


// Using the simple form of https://messageformat.github.io/messageformat/page-build
import msg from './example.yaml'
function say
say // Hello, Jimmy!
say // Whales has invited 4999 players to his game.
say // Dolphin has invited 19 players to their game.
say // Elephant has invited nobody to her game.

Note that ICU itself does not call MessageFormat a l20n system. The term comes from a JavaScript library of the same name by Mozilla with a similar functionality, which got replaced by another JavaScript system called "Fluent" later on.
ICU MessageFormat was created by adding the plural and selection system to an identically-named system in Java SE.