1
2# ICU4C
3
4In today's software market, applications need to support multiple languages for efficient development and maintenance. The International Components for Unicode (ICU) library provides powerful and complete multilingual cultural information processing capability to address this demand.
5
6[ICU4C](https://unicode-org.github.io/icu/userguide/icu4c/) is the C language version of the ICU library. Some APIs have been opened and support the following capabilities:
7
8- Locale and culture division (uloc.h)
9- Date and time formatting (udat.h)
10- Number formatting and weights and measures formatting (unumberformatter.h and unum.h)
11- Calendar and local calendar (ucal.h)
12- Sorting (ucol.h)
13- Line wrapping (ubrk.h)
14- Text normalization (unorm2.h)
15- Transliteration (utrans.h)
16- Character/text attribute setting (uchar.h and uscript.h)
17- Code conversion (ucnv.h)
18- Bidirectional text processing (ubidi.h)
19- Domain name conversion (uidna.h)
20
21## Introducing ICU4C Internationalization Capabilities
22
23If you need to use ICU4C internationalization capabilities, add the corresponding header file as required. Add the unicode directory prefix to the header file of this module. For example:
24```
25#include <unicode/uloc.h>
26```
27
28Add the following dynamic library to CMakeList.txt:
29```
30libicu.so
31```
32
33## Symbols Exported from the Standard Library
34
35[ICU4C Symbols Exported from Native APIs](icu4c-symbol.md)
36