ICU 55.1  55.1
uchar.h
Go to the documentation of this file.
1 /*
2 **********************************************************************
3 * Copyright (C) 1997-2014, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 *
7 * File UCHAR.H
8 *
9 * Modification History:
10 *
11 * Date Name Description
12 * 04/02/97 aliu Creation.
13 * 03/29/99 helena Updated for C APIs.
14 * 4/15/99 Madhu Updated for C Implementation and Javadoc
15 * 5/20/99 Madhu Added the function u_getVersion()
16 * 8/19/1999 srl Upgraded scripts to Unicode 3.0
17 * 8/27/1999 schererm UCharDirection constants: U_...
18 * 11/11/1999 weiv added u_isalnum(), cleaned comments
19 * 01/11/2000 helena Renamed u_getVersion to u_getUnicodeVersion().
20 ******************************************************************************
21 */
22 
23 #ifndef UCHAR_H
24 #define UCHAR_H
25 
26 #include "unicode/utypes.h"
27 
29 
30 /*==========================================================================*/
31 /* Unicode version number */
32 /*==========================================================================*/
42 #define U_UNICODE_VERSION "7.0"
43 
124 #define UCHAR_MIN_VALUE 0
125 
134 #define UCHAR_MAX_VALUE 0x10ffff
135 
140 #define U_MASK(x) ((uint32_t)1<<(x))
141 
161 typedef enum UProperty {
162  /*
163  * Note: UProperty constants are parsed by preparseucd.py.
164  * It matches lines like
165  * UCHAR_<Unicode property name>=<integer>,
166  */
167 
168  /* Note: Place UCHAR_ALPHABETIC before UCHAR_BINARY_START so that
169  debuggers display UCHAR_ALPHABETIC as the symbolic name for 0,
170  rather than UCHAR_BINARY_START. Likewise for other *_START
171  identifiers. */
172 
402 
410  UCHAR_BLOCK=0x1001,
438  UCHAR_SCRIPT=0x100A,
490 
504 
512 
515  UCHAR_AGE=0x4000,
524 #ifndef U_HIDE_DEPRECATED_API
525 
528 #endif /* U_HIDE_DEPRECATED_API */
529 
534  UCHAR_NAME=0x4005,
550 #ifndef U_HIDE_DEPRECATED_API
551 
556 #endif /* U_HIDE_DEPRECATED_API */
557 
565 
578  UCHAR_INVALID_CODE = -1
580 
586 typedef enum UCharCategory
587 {
588  /*
589  * Note: UCharCategory constants and their API comments are parsed by preparseucd.py.
590  * It matches pairs of lines like
591  * / ** <Unicode 2-letter General_Category value> comment... * /
592  * U_<[A-Z_]+> = <integer>,
593  */
594 
660 
675 #define U_GC_CN_MASK U_MASK(U_GENERAL_OTHER_TYPES)
676 
678 #define U_GC_LU_MASK U_MASK(U_UPPERCASE_LETTER)
679 
680 #define U_GC_LL_MASK U_MASK(U_LOWERCASE_LETTER)
681 
682 #define U_GC_LT_MASK U_MASK(U_TITLECASE_LETTER)
683 
684 #define U_GC_LM_MASK U_MASK(U_MODIFIER_LETTER)
685 
686 #define U_GC_LO_MASK U_MASK(U_OTHER_LETTER)
687 
689 #define U_GC_MN_MASK U_MASK(U_NON_SPACING_MARK)
690 
691 #define U_GC_ME_MASK U_MASK(U_ENCLOSING_MARK)
692 
693 #define U_GC_MC_MASK U_MASK(U_COMBINING_SPACING_MARK)
694 
696 #define U_GC_ND_MASK U_MASK(U_DECIMAL_DIGIT_NUMBER)
697 
698 #define U_GC_NL_MASK U_MASK(U_LETTER_NUMBER)
699 
700 #define U_GC_NO_MASK U_MASK(U_OTHER_NUMBER)
701 
703 #define U_GC_ZS_MASK U_MASK(U_SPACE_SEPARATOR)
704 
705 #define U_GC_ZL_MASK U_MASK(U_LINE_SEPARATOR)
706 
707 #define U_GC_ZP_MASK U_MASK(U_PARAGRAPH_SEPARATOR)
708 
710 #define U_GC_CC_MASK U_MASK(U_CONTROL_CHAR)
711 
712 #define U_GC_CF_MASK U_MASK(U_FORMAT_CHAR)
713 
714 #define U_GC_CO_MASK U_MASK(U_PRIVATE_USE_CHAR)
715 
716 #define U_GC_CS_MASK U_MASK(U_SURROGATE)
717 
719 #define U_GC_PD_MASK U_MASK(U_DASH_PUNCTUATION)
720 
721 #define U_GC_PS_MASK U_MASK(U_START_PUNCTUATION)
722 
723 #define U_GC_PE_MASK U_MASK(U_END_PUNCTUATION)
724 
725 #define U_GC_PC_MASK U_MASK(U_CONNECTOR_PUNCTUATION)
726 
727 #define U_GC_PO_MASK U_MASK(U_OTHER_PUNCTUATION)
728 
730 #define U_GC_SM_MASK U_MASK(U_MATH_SYMBOL)
731 
732 #define U_GC_SC_MASK U_MASK(U_CURRENCY_SYMBOL)
733 
734 #define U_GC_SK_MASK U_MASK(U_MODIFIER_SYMBOL)
735 
736 #define U_GC_SO_MASK U_MASK(U_OTHER_SYMBOL)
737 
739 #define U_GC_PI_MASK U_MASK(U_INITIAL_PUNCTUATION)
740 
741 #define U_GC_PF_MASK U_MASK(U_FINAL_PUNCTUATION)
742 
743 
745 #define U_GC_L_MASK \
746  (U_GC_LU_MASK|U_GC_LL_MASK|U_GC_LT_MASK|U_GC_LM_MASK|U_GC_LO_MASK)
747 
749 #define U_GC_LC_MASK \
750  (U_GC_LU_MASK|U_GC_LL_MASK|U_GC_LT_MASK)
751 
753 #define U_GC_M_MASK (U_GC_MN_MASK|U_GC_ME_MASK|U_GC_MC_MASK)
754 
756 #define U_GC_N_MASK (U_GC_ND_MASK|U_GC_NL_MASK|U_GC_NO_MASK)
757 
759 #define U_GC_Z_MASK (U_GC_ZS_MASK|U_GC_ZL_MASK|U_GC_ZP_MASK)
760 
762 #define U_GC_C_MASK \
763  (U_GC_CN_MASK|U_GC_CC_MASK|U_GC_CF_MASK|U_GC_CO_MASK|U_GC_CS_MASK)
764 
766 #define U_GC_P_MASK \
767  (U_GC_PD_MASK|U_GC_PS_MASK|U_GC_PE_MASK|U_GC_PC_MASK|U_GC_PO_MASK| \
768  U_GC_PI_MASK|U_GC_PF_MASK)
769 
771 #define U_GC_S_MASK (U_GC_SM_MASK|U_GC_SC_MASK|U_GC_SK_MASK|U_GC_SO_MASK)
772 
777 typedef enum UCharDirection {
778  /*
779  * Note: UCharDirection constants and their API comments are parsed by preparseucd.py.
780  * It matches pairs of lines like
781  * / ** <Unicode 1..3-letter Bidi_Class value> comment... * /
782  * U_<[A-Z_]+> = <integer>,
783  */
784 
834 
842  /*
843  * Note: UBidiPairedBracketType constants are parsed by preparseucd.py.
844  * It matches lines like
845  * U_BPT_<Unicode Bidi_Paired_Bracket_Type value name>
846  */
847 
855  U_BPT_COUNT /* 3 */
857 
863  /*
864  * Note: UBlockCode constants are parsed by preparseucd.py.
865  * It matches lines like
866  * UBLOCK_<Unicode Block value name> = <integer>,
867  */
868 
870  UBLOCK_NO_BLOCK = 0, /*[none]*/ /* Special range indicating No_Block */
871 
873  UBLOCK_BASIC_LATIN = 1, /*[0000]*/
874 
877 
879  UBLOCK_LATIN_EXTENDED_A =3, /*[0100]*/
880 
882  UBLOCK_LATIN_EXTENDED_B =4, /*[0180]*/
883 
885  UBLOCK_IPA_EXTENSIONS =5, /*[0250]*/
886 
889 
892 
897  UBLOCK_GREEK =8, /*[0370]*/
898 
900  UBLOCK_CYRILLIC =9, /*[0400]*/
901 
903  UBLOCK_ARMENIAN =10, /*[0530]*/
904 
906  UBLOCK_HEBREW =11, /*[0590]*/
907 
909  UBLOCK_ARABIC =12, /*[0600]*/
910 
912  UBLOCK_SYRIAC =13, /*[0700]*/
913 
915  UBLOCK_THAANA =14, /*[0780]*/
916 
918  UBLOCK_DEVANAGARI =15, /*[0900]*/
919 
921  UBLOCK_BENGALI =16, /*[0980]*/
922 
924  UBLOCK_GURMUKHI =17, /*[0A00]*/
925 
927  UBLOCK_GUJARATI =18, /*[0A80]*/
928 
930  UBLOCK_ORIYA =19, /*[0B00]*/
931 
933  UBLOCK_TAMIL =20, /*[0B80]*/
934 
936  UBLOCK_TELUGU =21, /*[0C00]*/
937 
939  UBLOCK_KANNADA =22, /*[0C80]*/
940 
942  UBLOCK_MALAYALAM =23, /*[0D00]*/
943 
945  UBLOCK_SINHALA =24, /*[0D80]*/
946 
948  UBLOCK_THAI =25, /*[0E00]*/
949 
951  UBLOCK_LAO =26, /*[0E80]*/
952 
954  UBLOCK_TIBETAN =27, /*[0F00]*/
955 
957  UBLOCK_MYANMAR =28, /*[1000]*/
958 
960  UBLOCK_GEORGIAN =29, /*[10A0]*/
961 
963  UBLOCK_HANGUL_JAMO =30, /*[1100]*/
964 
966  UBLOCK_ETHIOPIC =31, /*[1200]*/
967 
969  UBLOCK_CHEROKEE =32, /*[13A0]*/
970 
973 
975  UBLOCK_OGHAM =34, /*[1680]*/
976 
978  UBLOCK_RUNIC =35, /*[16A0]*/
979 
981  UBLOCK_KHMER =36, /*[1780]*/
982 
984  UBLOCK_MONGOLIAN =37, /*[1800]*/
985 
988 
990  UBLOCK_GREEK_EXTENDED =39, /*[1F00]*/
991 
994 
997 
999  UBLOCK_CURRENCY_SYMBOLS =42, /*[20A0]*/
1000 
1006 
1009 
1011  UBLOCK_NUMBER_FORMS =45, /*[2150]*/
1012 
1014  UBLOCK_ARROWS =46, /*[2190]*/
1015 
1018 
1021 
1023  UBLOCK_CONTROL_PICTURES =49, /*[2400]*/
1024 
1027 
1030 
1032  UBLOCK_BOX_DRAWING =52, /*[2500]*/
1033 
1035  UBLOCK_BLOCK_ELEMENTS =53, /*[2580]*/
1036 
1038  UBLOCK_GEOMETRIC_SHAPES =54, /*[25A0]*/
1039 
1042 
1044  UBLOCK_DINGBATS =56, /*[2700]*/
1045 
1047  UBLOCK_BRAILLE_PATTERNS =57, /*[2800]*/
1048 
1051 
1053  UBLOCK_KANGXI_RADICALS =59, /*[2F00]*/
1054 
1057 
1060 
1062  UBLOCK_HIRAGANA =62, /*[3040]*/
1063 
1065  UBLOCK_KATAKANA =63, /*[30A0]*/
1066 
1068  UBLOCK_BOPOMOFO =64, /*[3100]*/
1069 
1072 
1074  UBLOCK_KANBUN =66, /*[3190]*/
1075 
1078 
1081 
1084 
1087 
1090 
1092  UBLOCK_YI_SYLLABLES =72, /*[A000]*/
1093 
1095  UBLOCK_YI_RADICALS =73, /*[A490]*/
1096 
1098  UBLOCK_HANGUL_SYLLABLES =74, /*[AC00]*/
1099 
1101  UBLOCK_HIGH_SURROGATES =75, /*[D800]*/
1102 
1105 
1107  UBLOCK_LOW_SURROGATES =77, /*[DC00]*/
1108 
1118  UBLOCK_PRIVATE_USE_AREA =78, /*[E000]*/
1129 
1132 
1135 
1138 
1141 
1144 
1147 
1150 
1152  UBLOCK_SPECIALS =86, /*[FFF0]*/
1153 
1156 
1157  /* New blocks in Unicode 3.1 */
1158 
1160  UBLOCK_OLD_ITALIC = 88, /*[10300]*/
1162  UBLOCK_GOTHIC = 89, /*[10330]*/
1164  UBLOCK_DESERET = 90, /*[10400]*/
1168  UBLOCK_MUSICAL_SYMBOLS = 92, /*[1D100]*/
1176  UBLOCK_TAGS = 96, /*[E0000]*/
1177 
1178  /* New blocks in Unicode 3.2 */
1179 
1188  UBLOCK_TAGALOG = 98, /*[1700]*/
1190  UBLOCK_HANUNOO = 99, /*[1720]*/
1192  UBLOCK_BUHID = 100, /*[1740]*/
1194  UBLOCK_TAGBANWA = 101, /*[1760]*/
1208  UBLOCK_VARIATION_SELECTORS = 108, /*[FE00]*/
1213 
1214  /* New blocks in Unicode 4 */
1215 
1217  UBLOCK_LIMBU = 111, /*[1900]*/
1219  UBLOCK_TAI_LE = 112, /*[1950]*/
1221  UBLOCK_KHMER_SYMBOLS = 113, /*[19E0]*/
1223  UBLOCK_PHONETIC_EXTENSIONS = 114, /*[1D00]*/
1229  UBLOCK_LINEAR_B_SYLLABARY = 117, /*[10000]*/
1231  UBLOCK_LINEAR_B_IDEOGRAMS = 118, /*[10080]*/
1233  UBLOCK_AEGEAN_NUMBERS = 119, /*[10100]*/
1235  UBLOCK_UGARITIC = 120, /*[10380]*/
1237  UBLOCK_SHAVIAN = 121, /*[10450]*/
1239  UBLOCK_OSMANYA = 122, /*[10480]*/
1241  UBLOCK_CYPRIOT_SYLLABARY = 123, /*[10800]*/
1243  UBLOCK_TAI_XUAN_JING_SYMBOLS = 124, /*[1D300]*/
1246 
1247  /* New blocks in Unicode 4.1 */
1248 
1252  UBLOCK_ANCIENT_GREEK_NUMBERS = 127, /*[10140]*/
1254  UBLOCK_ARABIC_SUPPLEMENT = 128, /*[0750]*/
1256  UBLOCK_BUGINESE = 129, /*[1A00]*/
1258  UBLOCK_CJK_STROKES = 130, /*[31C0]*/
1262  UBLOCK_COPTIC = 132, /*[2C80]*/
1264  UBLOCK_ETHIOPIC_EXTENDED = 133, /*[2D80]*/
1266  UBLOCK_ETHIOPIC_SUPPLEMENT = 134, /*[1380]*/
1268  UBLOCK_GEORGIAN_SUPPLEMENT = 135, /*[2D00]*/
1270  UBLOCK_GLAGOLITIC = 136, /*[2C00]*/
1272  UBLOCK_KHAROSHTHI = 137, /*[10A00]*/
1276  UBLOCK_NEW_TAI_LUE = 139, /*[1980]*/
1278  UBLOCK_OLD_PERSIAN = 140, /*[103A0]*/
1284  UBLOCK_SYLOTI_NAGRI = 143, /*[A800]*/
1286  UBLOCK_TIFINAGH = 144, /*[2D30]*/
1288  UBLOCK_VERTICAL_FORMS = 145, /*[FE10]*/
1289 
1290  /* New blocks in Unicode 5.0 */
1291 
1293  UBLOCK_NKO = 146, /*[07C0]*/
1295  UBLOCK_BALINESE = 147, /*[1B00]*/
1297  UBLOCK_LATIN_EXTENDED_C = 148, /*[2C60]*/
1299  UBLOCK_LATIN_EXTENDED_D = 149, /*[A720]*/
1301  UBLOCK_PHAGS_PA = 150, /*[A840]*/
1303  UBLOCK_PHOENICIAN = 151, /*[10900]*/
1305  UBLOCK_CUNEIFORM = 152, /*[12000]*/
1309  UBLOCK_COUNTING_ROD_NUMERALS = 154, /*[1D360]*/
1310 
1311  /* New blocks in Unicode 5.1 */
1312 
1314  UBLOCK_SUNDANESE = 155, /*[1B80]*/
1316  UBLOCK_LEPCHA = 156, /*[1C00]*/
1318  UBLOCK_OL_CHIKI = 157, /*[1C50]*/
1320  UBLOCK_CYRILLIC_EXTENDED_A = 158, /*[2DE0]*/
1322  UBLOCK_VAI = 159, /*[A500]*/
1324  UBLOCK_CYRILLIC_EXTENDED_B = 160, /*[A640]*/
1326  UBLOCK_SAURASHTRA = 161, /*[A880]*/
1328  UBLOCK_KAYAH_LI = 162, /*[A900]*/
1330  UBLOCK_REJANG = 163, /*[A930]*/
1332  UBLOCK_CHAM = 164, /*[AA00]*/
1334  UBLOCK_ANCIENT_SYMBOLS = 165, /*[10190]*/
1336  UBLOCK_PHAISTOS_DISC = 166, /*[101D0]*/
1338  UBLOCK_LYCIAN = 167, /*[10280]*/
1340  UBLOCK_CARIAN = 168, /*[102A0]*/
1342  UBLOCK_LYDIAN = 169, /*[10920]*/
1344  UBLOCK_MAHJONG_TILES = 170, /*[1F000]*/
1346  UBLOCK_DOMINO_TILES = 171, /*[1F030]*/
1347 
1348  /* New blocks in Unicode 5.2 */
1349 
1351  UBLOCK_SAMARITAN = 172, /*[0800]*/
1355  UBLOCK_TAI_THAM = 174, /*[1A20]*/
1357  UBLOCK_VEDIC_EXTENSIONS = 175, /*[1CD0]*/
1359  UBLOCK_LISU = 176, /*[A4D0]*/
1361  UBLOCK_BAMUM = 177, /*[A6A0]*/
1365  UBLOCK_DEVANAGARI_EXTENDED = 179, /*[A8E0]*/
1369  UBLOCK_JAVANESE = 181, /*[A980]*/
1371  UBLOCK_MYANMAR_EXTENDED_A = 182, /*[AA60]*/
1373  UBLOCK_TAI_VIET = 183, /*[AA80]*/
1375  UBLOCK_MEETEI_MAYEK = 184, /*[ABC0]*/
1379  UBLOCK_IMPERIAL_ARAMAIC = 186, /*[10840]*/
1381  UBLOCK_OLD_SOUTH_ARABIAN = 187, /*[10A60]*/
1383  UBLOCK_AVESTAN = 188, /*[10B00]*/
1387  UBLOCK_INSCRIPTIONAL_PAHLAVI = 190, /*[10B60]*/
1389  UBLOCK_OLD_TURKIC = 191, /*[10C00]*/
1391  UBLOCK_RUMI_NUMERAL_SYMBOLS = 192, /*[10E60]*/
1393  UBLOCK_KAITHI = 193, /*[11080]*/
1395  UBLOCK_EGYPTIAN_HIEROGLYPHS = 194, /*[13000]*/
1402 
1403  /* New blocks in Unicode 6.0 */
1404 
1406  UBLOCK_MANDAIC = 198, /*[0840]*/
1408  UBLOCK_BATAK = 199, /*[1BC0]*/
1410  UBLOCK_ETHIOPIC_EXTENDED_A = 200, /*[AB00]*/
1412  UBLOCK_BRAHMI = 201, /*[11000]*/
1414  UBLOCK_BAMUM_SUPPLEMENT = 202, /*[16800]*/
1416  UBLOCK_KANA_SUPPLEMENT = 203, /*[1B000]*/
1418  UBLOCK_PLAYING_CARDS = 204, /*[1F0A0]*/
1422  UBLOCK_EMOTICONS = 206, /*[1F600]*/
1426  UBLOCK_ALCHEMICAL_SYMBOLS = 208, /*[1F700]*/
1429 
1430  /* New blocks in Unicode 6.1 */
1431 
1433  UBLOCK_ARABIC_EXTENDED_A = 210, /*[08A0]*/
1437  UBLOCK_CHAKMA = 212, /*[11100]*/
1441  UBLOCK_MEROITIC_CURSIVE = 214, /*[109A0]*/
1443  UBLOCK_MEROITIC_HIEROGLYPHS = 215, /*[10980]*/
1445  UBLOCK_MIAO = 216, /*[16F00]*/
1447  UBLOCK_SHARADA = 217, /*[11180]*/
1449  UBLOCK_SORA_SOMPENG = 218, /*[110D0]*/
1453  UBLOCK_TAKRI = 220, /*[11680]*/
1454 
1455  /* New blocks in Unicode 7.0 */
1456 
1458  UBLOCK_BASSA_VAH = 221, /*[16AD0]*/
1460  UBLOCK_CAUCASIAN_ALBANIAN = 222, /*[10530]*/
1462  UBLOCK_COPTIC_EPACT_NUMBERS = 223, /*[102E0]*/
1466  UBLOCK_DUPLOYAN = 225, /*[1BC00]*/
1468  UBLOCK_ELBASAN = 226, /*[10500]*/
1472  UBLOCK_GRANTHA = 228, /*[11300]*/
1474  UBLOCK_KHOJKI = 229, /*[11200]*/
1476  UBLOCK_KHUDAWADI = 230, /*[112B0]*/
1478  UBLOCK_LATIN_EXTENDED_E = 231, /*[AB30]*/
1480  UBLOCK_LINEAR_A = 232, /*[10600]*/
1482  UBLOCK_MAHAJANI = 233, /*[11150]*/
1484  UBLOCK_MANICHAEAN = 234, /*[10AC0]*/
1486  UBLOCK_MENDE_KIKAKUI = 235, /*[1E800]*/
1488  UBLOCK_MODI = 236, /*[11600]*/
1490  UBLOCK_MRO = 237, /*[16A40]*/
1492  UBLOCK_MYANMAR_EXTENDED_B = 238, /*[A9E0]*/
1494  UBLOCK_NABATAEAN = 239, /*[10880]*/
1496  UBLOCK_OLD_NORTH_ARABIAN = 240, /*[10A80]*/
1498  UBLOCK_OLD_PERMIC = 241, /*[10350]*/
1500  UBLOCK_ORNAMENTAL_DINGBATS = 242, /*[1F650]*/
1502  UBLOCK_PAHAWH_HMONG = 243, /*[16B00]*/
1504  UBLOCK_PALMYRENE = 244, /*[10860]*/
1506  UBLOCK_PAU_CIN_HAU = 245, /*[11AC0]*/
1508  UBLOCK_PSALTER_PAHLAVI = 246, /*[10B80]*/
1512  UBLOCK_SIDDHAM = 248, /*[11580]*/
1516  UBLOCK_SUPPLEMENTAL_ARROWS_C = 250, /*[1F800]*/
1518  UBLOCK_TIRHUTA = 251, /*[11480]*/
1520  UBLOCK_WARANG_CITI = 252, /*[118A0]*/
1521 
1524 
1527 };
1528 
1530 typedef enum UBlockCode UBlockCode;
1531 
1539 typedef enum UEastAsianWidth {
1540  /*
1541  * Note: UEastAsianWidth constants are parsed by preparseucd.py.
1542  * It matches lines like
1543  * U_EA_<Unicode East_Asian_Width value name>
1544  */
1545 
1546  U_EA_NEUTRAL, /*[N]*/
1547  U_EA_AMBIGUOUS, /*[A]*/
1548  U_EA_HALFWIDTH, /*[H]*/
1549  U_EA_FULLWIDTH, /*[F]*/
1550  U_EA_NARROW, /*[Na]*/
1551  U_EA_WIDE, /*[W]*/
1552  U_EA_COUNT
1554 
1566 typedef enum UCharNameChoice {
1569 #ifndef U_HIDE_DEPRECATED_API
1570 
1576 #endif /* U_HIDE_DEPRECATED_API */
1577 
1584 
1598 typedef enum UPropertyNameChoice {
1599  U_SHORT_PROPERTY_NAME,
1600  U_LONG_PROPERTY_NAME,
1601  U_PROPERTY_NAME_CHOICE_COUNT
1603 
1610 typedef enum UDecompositionType {
1611  /*
1612  * Note: UDecompositionType constants are parsed by preparseucd.py.
1613  * It matches lines like
1614  * U_DT_<Unicode Decomposition_Type value name>
1615  */
1616 
1617  U_DT_NONE, /*[none]*/
1618  U_DT_CANONICAL, /*[can]*/
1619  U_DT_COMPAT, /*[com]*/
1620  U_DT_CIRCLE, /*[enc]*/
1621  U_DT_FINAL, /*[fin]*/
1622  U_DT_FONT, /*[font]*/
1623  U_DT_FRACTION, /*[fra]*/
1624  U_DT_INITIAL, /*[init]*/
1625  U_DT_ISOLATED, /*[iso]*/
1626  U_DT_MEDIAL, /*[med]*/
1627  U_DT_NARROW, /*[nar]*/
1628  U_DT_NOBREAK, /*[nb]*/
1629  U_DT_SMALL, /*[sml]*/
1630  U_DT_SQUARE, /*[sqr]*/
1631  U_DT_SUB, /*[sub]*/
1632  U_DT_SUPER, /*[sup]*/
1633  U_DT_VERTICAL, /*[vert]*/
1634  U_DT_WIDE, /*[wide]*/
1635  U_DT_COUNT /* 18 */
1637 
1644 typedef enum UJoiningType {
1645  /*
1646  * Note: UJoiningType constants are parsed by preparseucd.py.
1647  * It matches lines like
1648  * U_JT_<Unicode Joining_Type value name>
1649  */
1650 
1651  U_JT_NON_JOINING, /*[U]*/
1652  U_JT_JOIN_CAUSING, /*[C]*/
1653  U_JT_DUAL_JOINING, /*[D]*/
1654  U_JT_LEFT_JOINING, /*[L]*/
1655  U_JT_RIGHT_JOINING, /*[R]*/
1656  U_JT_TRANSPARENT, /*[T]*/
1657  U_JT_COUNT /* 6 */
1659 
1666 typedef enum UJoiningGroup {
1667  /*
1668  * Note: UJoiningGroup constants are parsed by preparseucd.py.
1669  * It matches lines like
1670  * U_JG_<Unicode Joining_Group value name>
1671  */
1672 
1673  U_JG_NO_JOINING_GROUP,
1674  U_JG_AIN,
1675  U_JG_ALAPH,
1676  U_JG_ALEF,
1677  U_JG_BEH,
1678  U_JG_BETH,
1679  U_JG_DAL,
1680  U_JG_DALATH_RISH,
1681  U_JG_E,
1682  U_JG_FEH,
1683  U_JG_FINAL_SEMKATH,
1684  U_JG_GAF,
1685  U_JG_GAMAL,
1686  U_JG_HAH,
1688  U_JG_HAMZA_ON_HEH_GOAL=U_JG_TEH_MARBUTA_GOAL,
1689  U_JG_HE,
1690  U_JG_HEH,
1691  U_JG_HEH_GOAL,
1692  U_JG_HETH,
1693  U_JG_KAF,
1694  U_JG_KAPH,
1695  U_JG_KNOTTED_HEH,
1696  U_JG_LAM,
1697  U_JG_LAMADH,
1698  U_JG_MEEM,
1699  U_JG_MIM,
1700  U_JG_NOON,
1701  U_JG_NUN,
1702  U_JG_PE,
1703  U_JG_QAF,
1704  U_JG_QAPH,
1705  U_JG_REH,
1706  U_JG_REVERSED_PE,
1707  U_JG_SAD,
1708  U_JG_SADHE,
1709  U_JG_SEEN,
1710  U_JG_SEMKATH,
1711  U_JG_SHIN,
1712  U_JG_SWASH_KAF,
1713  U_JG_SYRIAC_WAW,
1714  U_JG_TAH,
1715  U_JG_TAW,
1716  U_JG_TEH_MARBUTA,
1717  U_JG_TETH,
1718  U_JG_WAW,
1719  U_JG_YEH,
1720  U_JG_YEH_BARREE,
1721  U_JG_YEH_WITH_TAIL,
1722  U_JG_YUDH,
1723  U_JG_YUDH_HE,
1724  U_JG_ZAIN,
1760  U_JG_COUNT
1762 
1770  /*
1771  * Note: UGraphemeClusterBreak constants are parsed by preparseucd.py.
1772  * It matches lines like
1773  * U_GCB_<Unicode Grapheme_Cluster_Break value name>
1774  */
1775 
1776  U_GCB_OTHER = 0, /*[XX]*/
1777  U_GCB_CONTROL = 1, /*[CN]*/
1778  U_GCB_CR = 2, /*[CR]*/
1779  U_GCB_EXTEND = 3, /*[EX]*/
1780  U_GCB_L = 4, /*[L]*/
1781  U_GCB_LF = 5, /*[LF]*/
1782  U_GCB_LV = 6, /*[LV]*/
1783  U_GCB_LVT = 7, /*[LVT]*/
1784  U_GCB_T = 8, /*[T]*/
1785  U_GCB_V = 9, /*[V]*/
1786  U_GCB_SPACING_MARK = 10, /*[SM]*/ /* from here on: new in Unicode 5.1/ICU 4.0 */
1787  U_GCB_PREPEND = 11, /*[PP]*/
1788  U_GCB_REGIONAL_INDICATOR = 12, /*[RI]*/ /* new in Unicode 6.2/ICU 50 */
1789  U_GCB_COUNT = 13
1791 
1799 typedef enum UWordBreakValues {
1800  /*
1801  * Note: UWordBreakValues constants are parsed by preparseucd.py.
1802  * It matches lines like
1803  * U_WB_<Unicode Word_Break value name>
1804  */
1805 
1806  U_WB_OTHER = 0, /*[XX]*/
1807  U_WB_ALETTER = 1, /*[LE]*/
1808  U_WB_FORMAT = 2, /*[FO]*/
1809  U_WB_KATAKANA = 3, /*[KA]*/
1810  U_WB_MIDLETTER = 4, /*[ML]*/
1811  U_WB_MIDNUM = 5, /*[MN]*/
1812  U_WB_NUMERIC = 6, /*[NU]*/
1813  U_WB_EXTENDNUMLET = 7, /*[EX]*/
1814  U_WB_CR = 8, /*[CR]*/ /* from here on: new in Unicode 5.1/ICU 4.0 */
1815  U_WB_EXTEND = 9, /*[Extend]*/
1816  U_WB_LF = 10, /*[LF]*/
1817  U_WB_MIDNUMLET =11, /*[MB]*/
1818  U_WB_NEWLINE =12, /*[NL]*/
1819  U_WB_REGIONAL_INDICATOR = 13, /*[RI]*/ /* new in Unicode 6.2/ICU 50 */
1820  U_WB_HEBREW_LETTER = 14, /*[HL]*/ /* from here on: new in Unicode 6.3/ICU 52 */
1821  U_WB_SINGLE_QUOTE = 15, /*[SQ]*/
1822  U_WB_DOUBLE_QUOTE = 16, /*[DQ]*/
1823  U_WB_COUNT = 17
1825 
1832 typedef enum USentenceBreak {
1833  /*
1834  * Note: USentenceBreak constants are parsed by preparseucd.py.
1835  * It matches lines like
1836  * U_SB_<Unicode Sentence_Break value name>
1837  */
1838 
1839  U_SB_OTHER = 0, /*[XX]*/
1840  U_SB_ATERM = 1, /*[AT]*/
1841  U_SB_CLOSE = 2, /*[CL]*/
1842  U_SB_FORMAT = 3, /*[FO]*/
1843  U_SB_LOWER = 4, /*[LO]*/
1844  U_SB_NUMERIC = 5, /*[NU]*/
1845  U_SB_OLETTER = 6, /*[LE]*/
1846  U_SB_SEP = 7, /*[SE]*/
1847  U_SB_SP = 8, /*[SP]*/
1848  U_SB_STERM = 9, /*[ST]*/
1849  U_SB_UPPER = 10, /*[UP]*/
1850  U_SB_CR = 11, /*[CR]*/ /* from here on: new in Unicode 5.1/ICU 4.0 */
1851  U_SB_EXTEND = 12, /*[EX]*/
1852  U_SB_LF = 13, /*[LF]*/
1853  U_SB_SCONTINUE = 14, /*[SC]*/
1854  U_SB_COUNT = 15
1856 
1863 typedef enum ULineBreak {
1864  /*
1865  * Note: ULineBreak constants are parsed by preparseucd.py.
1866  * It matches lines like
1867  * U_LB_<Unicode Line_Break value name>
1868  */
1869 
1870  U_LB_UNKNOWN = 0, /*[XX]*/
1871  U_LB_AMBIGUOUS = 1, /*[AI]*/
1872  U_LB_ALPHABETIC = 2, /*[AL]*/
1873  U_LB_BREAK_BOTH = 3, /*[B2]*/
1874  U_LB_BREAK_AFTER = 4, /*[BA]*/
1875  U_LB_BREAK_BEFORE = 5, /*[BB]*/
1876  U_LB_MANDATORY_BREAK = 6, /*[BK]*/
1877  U_LB_CONTINGENT_BREAK = 7, /*[CB]*/
1878  U_LB_CLOSE_PUNCTUATION = 8, /*[CL]*/
1879  U_LB_COMBINING_MARK = 9, /*[CM]*/
1880  U_LB_CARRIAGE_RETURN = 10, /*[CR]*/
1881  U_LB_EXCLAMATION = 11, /*[EX]*/
1882  U_LB_GLUE = 12, /*[GL]*/
1883  U_LB_HYPHEN = 13, /*[HY]*/
1884  U_LB_IDEOGRAPHIC = 14, /*[ID]*/
1886  U_LB_INSEPARABLE = 15, /*[IN]*/
1887  U_LB_INSEPERABLE = U_LB_INSEPARABLE,
1888  U_LB_INFIX_NUMERIC = 16, /*[IS]*/
1889  U_LB_LINE_FEED = 17, /*[LF]*/
1890  U_LB_NONSTARTER = 18, /*[NS]*/
1891  U_LB_NUMERIC = 19, /*[NU]*/
1892  U_LB_OPEN_PUNCTUATION = 20, /*[OP]*/
1893  U_LB_POSTFIX_NUMERIC = 21, /*[PO]*/
1894  U_LB_PREFIX_NUMERIC = 22, /*[PR]*/
1895  U_LB_QUOTATION = 23, /*[QU]*/
1896  U_LB_COMPLEX_CONTEXT = 24, /*[SA]*/
1897  U_LB_SURROGATE = 25, /*[SG]*/
1898  U_LB_SPACE = 26, /*[SP]*/
1899  U_LB_BREAK_SYMBOLS = 27, /*[SY]*/
1900  U_LB_ZWSPACE = 28, /*[ZW]*/
1901  U_LB_NEXT_LINE = 29, /*[NL]*/ /* from here on: new in Unicode 4/ICU 2.6 */
1902  U_LB_WORD_JOINER = 30, /*[WJ]*/
1903  U_LB_H2 = 31, /*[H2]*/ /* from here on: new in Unicode 4.1/ICU 3.4 */
1904  U_LB_H3 = 32, /*[H3]*/
1905  U_LB_JL = 33, /*[JL]*/
1906  U_LB_JT = 34, /*[JT]*/
1907  U_LB_JV = 35, /*[JV]*/
1908  U_LB_CLOSE_PARENTHESIS = 36, /*[CP]*/ /* new in Unicode 5.2/ICU 4.4 */
1909  U_LB_CONDITIONAL_JAPANESE_STARTER = 37,/*[CJ]*/ /* new in Unicode 6.1/ICU 49 */
1910  U_LB_HEBREW_LETTER = 38, /*[HL]*/ /* new in Unicode 6.1/ICU 49 */
1911  U_LB_REGIONAL_INDICATOR = 39,/*[RI]*/ /* new in Unicode 6.2/ICU 50 */
1912  U_LB_COUNT = 40
1914 
1921 typedef enum UNumericType {
1922  /*
1923  * Note: UNumericType constants are parsed by preparseucd.py.
1924  * It matches lines like
1925  * U_NT_<Unicode Numeric_Type value name>
1926  */
1927 
1928  U_NT_NONE, /*[None]*/
1929  U_NT_DECIMAL, /*[de]*/
1930  U_NT_DIGIT, /*[di]*/
1931  U_NT_NUMERIC, /*[nu]*/
1932  U_NT_COUNT
1934 
1941 typedef enum UHangulSyllableType {
1942  /*
1943  * Note: UHangulSyllableType constants are parsed by preparseucd.py.
1944  * It matches lines like
1945  * U_HST_<Unicode Hangul_Syllable_Type value name>
1946  */
1947 
1948  U_HST_NOT_APPLICABLE, /*[NA]*/
1949  U_HST_LEADING_JAMO, /*[L]*/
1950  U_HST_VOWEL_JAMO, /*[V]*/
1951  U_HST_TRAILING_JAMO, /*[T]*/
1952  U_HST_LV_SYLLABLE, /*[LV]*/
1953  U_HST_LVT_SYLLABLE, /*[LVT]*/
1954  U_HST_COUNT
1956 
1983 U_STABLE UBool U_EXPORT2
1985 
1998 U_STABLE UBool U_EXPORT2
2000 
2013 U_STABLE UBool U_EXPORT2
2015 
2028 U_STABLE UBool U_EXPORT2
2030 
2049 U_STABLE UBool U_EXPORT2
2051 
2089 U_STABLE int32_t U_EXPORT2
2091 
2110 U_STABLE int32_t U_EXPORT2
2112 
2139 U_STABLE int32_t U_EXPORT2
2141 
2164 U_STABLE double U_EXPORT2
2166 
2174 #define U_NO_NUMERIC_VALUE ((double)-123456789.)
2175 
2199 U_STABLE UBool U_EXPORT2
2201 
2226 U_STABLE UBool U_EXPORT2
2228 
2243 U_STABLE UBool U_EXPORT2
2245 
2264 U_STABLE UBool U_EXPORT2
2266 
2285 U_STABLE UBool U_EXPORT2
2287 
2306 U_STABLE UBool U_EXPORT2
2308 
2329 U_STABLE UBool U_EXPORT2
2331 
2345 U_STABLE UBool U_EXPORT2
2347 
2364 U_STABLE UBool U_EXPORT2
2366 
2393 U_STABLE UBool U_EXPORT2
2395 
2418 U_STABLE UBool U_EXPORT2
2420 
2439 U_STABLE UBool U_EXPORT2
2441 
2460 U_STABLE UBool U_EXPORT2
2462 
2500 U_STABLE UBool U_EXPORT2
2502 
2524 U_STABLE UBool U_EXPORT2
2526 
2539 U_STABLE UBool U_EXPORT2
2541 
2557 U_STABLE UBool U_EXPORT2
2559 
2578 U_STABLE UBool U_EXPORT2
2580 
2597 U_STABLE UCharDirection U_EXPORT2
2599 
2615 U_STABLE UBool U_EXPORT2
2617 
2637 U_STABLE UChar32 U_EXPORT2
2639 
2656 U_STABLE UChar32 U_EXPORT2
2658 
2670 U_STABLE int8_t U_EXPORT2
2672 
2686 #define U_GET_GC_MASK(c) U_MASK(u_charType(c))
2687 
2705 typedef UBool U_CALLCONV
2706 UCharEnumTypeRange(const void *context, UChar32 start, UChar32 limit, UCharCategory type);
2707 
2727 U_STABLE void U_EXPORT2
2728 u_enumCharTypes(UCharEnumTypeRange *enumRange, const void *context);
2729 
2730 #if !UCONFIG_NO_NORMALIZATION
2731 
2739 U_STABLE uint8_t U_EXPORT2
2741 
2742 #endif
2743 
2767 U_STABLE int32_t U_EXPORT2
2769 
2779 U_STABLE UBlockCode U_EXPORT2
2781 
2814 U_STABLE int32_t U_EXPORT2
2816  char *buffer, int32_t bufferLength,
2817  UErrorCode *pErrorCode);
2818 
2819 #ifndef U_HIDE_DEPRECATED_API
2820 
2838 U_DEPRECATED int32_t U_EXPORT2
2840  char *dest, int32_t destCapacity,
2841  UErrorCode *pErrorCode);
2842 #endif /* U_HIDE_DEPRECATED_API */
2843 
2864 U_STABLE UChar32 U_EXPORT2
2866  const char *name,
2867  UErrorCode *pErrorCode);
2868 
2886 typedef UBool U_CALLCONV UEnumCharNamesFn(void *context,
2887  UChar32 code,
2888  UCharNameChoice nameChoice,
2889  const char *name,
2890  int32_t length);
2891 
2913 U_STABLE void U_EXPORT2
2915  UEnumCharNamesFn *fn,
2916  void *context,
2917  UCharNameChoice nameChoice,
2918  UErrorCode *pErrorCode);
2919 
2951 U_STABLE const char* U_EXPORT2
2953  UPropertyNameChoice nameChoice);
2954 
2974 U_STABLE UProperty U_EXPORT2
2975 u_getPropertyEnum(const char* alias);
2976 
3024 U_STABLE const char* U_EXPORT2
3026  int32_t value,
3027  UPropertyNameChoice nameChoice);
3028 
3060 U_STABLE int32_t U_EXPORT2
3062  const char* alias);
3063 
3081 U_STABLE UBool U_EXPORT2
3083 
3105 U_STABLE UBool U_EXPORT2
3107 
3128 U_STABLE UBool U_EXPORT2
3130 
3147 U_STABLE UBool U_EXPORT2
3149 
3168 U_STABLE UBool U_EXPORT2
3170 
3193 U_STABLE UChar32 U_EXPORT2
3195 
3218 U_STABLE UChar32 U_EXPORT2
3220 
3243 U_STABLE UChar32 U_EXPORT2
3245 
3247 #define U_FOLD_CASE_DEFAULT 0
3248 
3265 #define U_FOLD_CASE_EXCLUDE_SPECIAL_I 1
3266 
3289 U_STABLE UChar32 U_EXPORT2
3290 u_foldCase(UChar32 c, uint32_t options);
3291 
3330 U_STABLE int32_t U_EXPORT2
3331 u_digit(UChar32 ch, int8_t radix);
3332 
3361 U_STABLE UChar32 U_EXPORT2
3362 u_forDigit(int32_t digit, int8_t radix);
3363 
3378 U_STABLE void U_EXPORT2
3379 u_charAge(UChar32 c, UVersionInfo versionArray);
3380 
3392 U_STABLE void U_EXPORT2
3394 
3395 #if !UCONFIG_NO_NORMALIZATION
3396 
3417 U_STABLE int32_t U_EXPORT2
3418 u_getFC_NFKC_Closure(UChar32 c, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode);
3419 
3420 #endif
3421 
3422 
3424 
3425 #endif /*_UCHAR*/
3426 /*eof*/
UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS
@ UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS
Definition: uchar.h:1131
U_POP_DIRECTIONAL_ISOLATE
@ U_POP_DIRECTIONAL_ISOLATE
PDI.
Definition: uchar.h:830
U_JG_TEH_MARBUTA_GOAL
@ U_JG_TEH_MARBUTA_GOAL
Definition: uchar.h:1687
u_getPropertyValueEnum
int32_t u_getPropertyValueEnum(UProperty property, const char *alias)
Return the property value integer for a given value name, as specified in the Unicode database file P...
U_JG_NYA
@ U_JG_NYA
Definition: uchar.h:1730
UCHAR_JOINING_TYPE
@ UCHAR_JOINING_TYPE
Enumerated property Joining_Type.
Definition: uchar.h:429
UCHAR_POSIX_XDIGIT
@ UCHAR_POSIX_XDIGIT
Binary property xdigit (a C/POSIX character class).
Definition: uchar.h:383
UCHAR_ALPHABETIC
@ UCHAR_ALPHABETIC
Binary property Alphabetic.
Definition: uchar.h:175
u_isalnum
UBool u_isalnum(UChar32 c)
Determines whether the specified code point is an alphanumeric character (letter or digit) according ...
U_ENCLOSING_MARK
@ U_ENCLOSING_MARK
Me.
Definition: uchar.h:612
UCHAR_ASCII_HEX_DIGIT
@ UCHAR_ASCII_HEX_DIGIT
Binary property ASCII_Hex_Digit.
Definition: uchar.h:179
UCHAR_RADICAL
@ UCHAR_RADICAL
Binary property Radical (new in Unicode 3.2).
Definition: uchar.h:267
UBLOCK_DINGBATS
@ UBLOCK_DINGBATS
Definition: uchar.h:1044
UBLOCK_GREEK
@ UBLOCK_GREEK
Unicode 3.2 renames this block to "Greek and Coptic".
Definition: uchar.h:897
UCHAR_BIDI_PAIRED_BRACKET
@ UCHAR_BIDI_PAIRED_BRACKET
String property Bidi_Paired_Bracket (new in Unicode 6.3).
Definition: uchar.h:562
UCHAR_NFD_QUICK_CHECK
@ UCHAR_NFD_QUICK_CHECK
Enumerated property NFD_Quick_Check.
Definition: uchar.h:444
UCHAR_SIMPLE_UPPERCASE_MAPPING
@ UCHAR_SIMPLE_UPPERCASE_MAPPING
String property Simple_Uppercase_Mapping.
Definition: uchar.h:546
UBLOCK_UGARITIC
@ UBLOCK_UGARITIC
Definition: uchar.h:1235
U_JG_MANICHAEAN_QOPH
@ U_JG_MANICHAEAN_QOPH
Definition: uchar.h:1747
U_ARABIC_NUMBER
@ U_ARABIC_NUMBER
AN.
Definition: uchar.h:796
UBLOCK_LIMBU
@ UBLOCK_LIMBU
Definition: uchar.h:1217
UBLOCK_SORA_SOMPENG
@ UBLOCK_SORA_SOMPENG
Definition: uchar.h:1449
u_charAge
void u_charAge(UChar32 c, UVersionInfo versionArray)
Get the "age" of the code point.
UBLOCK_CJK_STROKES
@ UBLOCK_CJK_STROKES
Definition: uchar.h:1258
UBLOCK_MISCELLANEOUS_TECHNICAL
@ UBLOCK_MISCELLANEOUS_TECHNICAL
Definition: uchar.h:1020
UBLOCK_PHAGS_PA
@ UBLOCK_PHAGS_PA
Definition: uchar.h:1301
UCHAR_CASE_FOLDING
@ UCHAR_CASE_FOLDING
String property Case_Folding.
Definition: uchar.h:523
UBLOCK_CUNEIFORM_NUMBERS_AND_PUNCTUATION
@ UBLOCK_CUNEIFORM_NUMBERS_AND_PUNCTUATION
Definition: uchar.h:1307
UBLOCK_MEETEI_MAYEK_EXTENSIONS
@ UBLOCK_MEETEI_MAYEK_EXTENSIONS
Definition: uchar.h:1439
UBLOCK_MISCELLANEOUS_SYMBOLS
@ UBLOCK_MISCELLANEOUS_SYMBOLS
Definition: uchar.h:1041
u_charDirection
UCharDirection u_charDirection(UChar32 c)
Returns the bidirectional category value for the code point, which is used in the Unicode bidirection...
UBLOCK_DESERET
@ UBLOCK_DESERET
Definition: uchar.h:1164
U_TITLECASE_LETTER
@ U_TITLECASE_LETTER
Lt.
Definition: uchar.h:604
UCHAR_MASK_LIMIT
@ UCHAR_MASK_LIMIT
One more than the last constant for bit-mask Unicode properties.
Definition: uchar.h:503
UCHAR_SIMPLE_TITLECASE_MAPPING
@ UCHAR_SIMPLE_TITLECASE_MAPPING
String property Simple_Titlecase_Mapping.
Definition: uchar.h:543
UBLOCK_OLD_SOUTH_ARABIAN
@ UBLOCK_OLD_SOUTH_ARABIAN
Definition: uchar.h:1381
UCHAR_DOUBLE_LIMIT
@ UCHAR_DOUBLE_LIMIT
One more than the last constant for double Unicode properties.
Definition: uchar.h:511
UBLOCK_MODIFIER_TONE_LETTERS
@ UBLOCK_MODIFIER_TONE_LETTERS
Definition: uchar.h:1274
u_getIntPropertyValue
int32_t u_getIntPropertyValue(UChar32 c, UProperty which)
Get the property value for an enumerated or integer Unicode property for a code point.
UBLOCK_MANDAIC
@ UBLOCK_MANDAIC
Definition: uchar.h:1406
UBLOCK_GREEK_EXTENDED
@ UBLOCK_GREEK_EXTENDED
Definition: uchar.h:990
U_LOWERCASE_LETTER
@ U_LOWERCASE_LETTER
Ll.
Definition: uchar.h:602
UCHAR_HYPHEN
@ UCHAR_HYPHEN
Binary property Hyphen.
Definition: uchar.h:225
UCHAR_NUMERIC_VALUE
@ UCHAR_NUMERIC_VALUE
Double property Numeric_Value.
Definition: uchar.h:507
UBLOCK_NUMBER_FORMS
@ UBLOCK_NUMBER_FORMS
Definition: uchar.h:1011
UBLOCK_SHORTHAND_FORMAT_CONTROLS
@ UBLOCK_SHORTHAND_FORMAT_CONTROLS
Definition: uchar.h:1510
UBLOCK_MEROITIC_CURSIVE
@ UBLOCK_MEROITIC_CURSIVE
Definition: uchar.h:1441
utypes.h
Basic definitions for ICU, for both C and C++ APIs.
UBLOCK_ENCLOSED_IDEOGRAPHIC_SUPPLEMENT
@ UBLOCK_ENCLOSED_IDEOGRAPHIC_SUPPLEMENT
Definition: uchar.h:1399
u_charName
int32_t u_charName(UChar32 code, UCharNameChoice nameChoice, char *buffer, int32_t bufferLength, UErrorCode *pErrorCode)
Retrieve the name of a Unicode character.
UCHAR_NFKD_INERT
@ UCHAR_NFKD_INERT
Binary property NFKD_Inert.
Definition: uchar.h:323
UBLOCK_LETTERLIKE_SYMBOLS
@ UBLOCK_LETTERLIKE_SYMBOLS
Definition: uchar.h:1008
UCHAR_LOGICAL_ORDER_EXCEPTION
@ UCHAR_LOGICAL_ORDER_EXCEPTION
Binary property Logical_Order_Exception (new in Unicode 3.2).
Definition: uchar.h:252
U_LINE_SEPARATOR
@ U_LINE_SEPARATOR
Zl.
Definition: uchar.h:624
UCHAR_TITLECASE_MAPPING
@ UCHAR_TITLECASE_MAPPING
String property Titlecase_Mapping.
Definition: uchar.h:549
u_isspace
UBool u_isspace(UChar32 c)
Determines if the specified character is a space character or not.
UBLOCK_COUNT
@ UBLOCK_COUNT
Definition: uchar.h:1523
U_JG_STRAIGHT_WAW
@ U_JG_STRAIGHT_WAW
Definition: uchar.h:1759
UCHAR_SENTENCE_BREAK
@ UCHAR_SENTENCE_BREAK
Enumerated property Sentence_Break (new in Unicode 4.1).
Definition: uchar.h:477
U_COMBINING_SPACING_MARK
@ U_COMBINING_SPACING_MARK
Mc.
Definition: uchar.h:614
U_EUROPEAN_NUMBER_TERMINATOR
@ U_EUROPEAN_NUMBER_TERMINATOR
ET.
Definition: uchar.h:794
UBLOCK_VARIATION_SELECTORS
@ UBLOCK_VARIATION_SELECTORS
Definition: uchar.h:1208
U_CHAR_CATEGORY_COUNT
@ U_CHAR_CATEGORY_COUNT
One higher than the last enum UCharCategory constant.
Definition: uchar.h:658
UBool
int8_t UBool
The ICU boolean type.
Definition: umachine.h:234
UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED
@ UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED
Definition: uchar.h:1353
UCHAR_NFKC_INERT
@ UCHAR_NFKC_INERT
Binary property NFKC_Inert.
Definition: uchar.h:337
UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT
@ UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT
Definition: uchar.h:1174
UBLOCK_CYRILLIC_EXTENDED_B
@ UBLOCK_CYRILLIC_EXTENDED_B
Definition: uchar.h:1324
UBLOCK_MAHAJANI
@ UBLOCK_MAHAJANI
Definition: uchar.h:1482
U_FINAL_PUNCTUATION
@ U_FINAL_PUNCTUATION
Pf.
Definition: uchar.h:656
u_getISOComment
int32_t u_getISOComment(UChar32 c, char *dest, int32_t destCapacity, UErrorCode *pErrorCode)
Returns an empty string.
UBLOCK_LAO
@ UBLOCK_LAO
Definition: uchar.h:951
UBLOCK_ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS
@ UBLOCK_ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS
Definition: uchar.h:1435
u_enumCharTypes
void u_enumCharTypes(UCharEnumTypeRange *enumRange, const void *context)
Enumerate efficiently all code points with their Unicode general categories.
u_getIntPropertyMaxValue
int32_t u_getIntPropertyMaxValue(UProperty which)
Get the maximum value for an enumerated/integer/binary Unicode property.
UCHAR_ISO_COMMENT
@ UCHAR_ISO_COMMENT
Deprecated string property ISO_Comment.
Definition: uchar.h:527
UCHAR_CHANGES_WHEN_CASEMAPPED
@ UCHAR_CHANGES_WHEN_CASEMAPPED
Binary property Changes_When_Casemapped.
Definition: uchar.h:397
UBLOCK_CARIAN
@ UBLOCK_CARIAN
Definition: uchar.h:1340
UBLOCK_HIGH_SURROGATES
@ UBLOCK_HIGH_SURROGATES
Definition: uchar.h:1101
U_RIGHT_TO_LEFT_ARABIC
@ U_RIGHT_TO_LEFT_ARABIC
AL.
Definition: uchar.h:812
UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS
@ UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS
Definition: uchar.h:972
UBLOCK_RUNIC
@ UBLOCK_RUNIC
Definition: uchar.h:978
UCHAR_POSIX_BLANK
@ UCHAR_POSIX_BLANK
Binary property blank (a C/POSIX character class).
Definition: uchar.h:368
u_iscntrl
UBool u_iscntrl(UChar32 c)
Determines whether the specified code point is a control character (as defined by this function).
UBLOCK_MALAYALAM
@ UBLOCK_MALAYALAM
Definition: uchar.h:942
UCHAR_POSIX_GRAPH
@ UCHAR_POSIX_GRAPH
Binary property graph (a C/POSIX character class).
Definition: uchar.h:373
UCHAR_NONCHARACTER_CODE_POINT
@ UCHAR_NONCHARACTER_CODE_POINT
Binary property Noncharacter_Code_Point.
Definition: uchar.h:261
UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A
@ UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A
Definition: uchar.h:1086
u_isUUppercase
UBool u_isUUppercase(UChar32 c)
Check if a code point has the Uppercase Unicode property.
UBLOCK_OLD_PERMIC
@ UBLOCK_OLD_PERMIC
Definition: uchar.h:1498
U_JG_MANICHAEAN_WAW
@ U_JG_MANICHAEAN_WAW
Definition: uchar.h:1756
UBLOCK_SUPPLEMENTAL_ARROWS_A
@ UBLOCK_SUPPLEMENTAL_ARROWS_A
Definition: uchar.h:1198
u_getBidiPairedBracket
UChar32 u_getBidiPairedBracket(UChar32 c)
Maps the specified character to its paired bracket character.
UBLOCK_CJK_COMPATIBILITY
@ UBLOCK_CJK_COMPATIBILITY
Definition: uchar.h:1083
U_CALLCONV
#define U_CALLCONV
Similar to U_CDECL_BEGIN/U_CDECL_END, this qualifier is necessary in callback function typedefs to ma...
Definition: platform.h:756
UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D
@ UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D
Definition: uchar.h:1428
UBLOCK_PLAYING_CARDS
@ UBLOCK_PLAYING_CARDS
Definition: uchar.h:1418
U_JG_MANICHAEAN_ZAYIN
@ U_JG_MANICHAEAN_ZAYIN
Definition: uchar.h:1758
U_OTHER_PUNCTUATION
@ U_OTHER_PUNCTUATION
Po.
Definition: uchar.h:644
UBLOCK_HANGUL_SYLLABLES
@ UBLOCK_HANGUL_SYLLABLES
Definition: uchar.h:1098
UBLOCK_NEW_TAI_LUE
@ UBLOCK_NEW_TAI_LUE
Definition: uchar.h:1276
UBLOCK_BOPOMOFO_EXTENDED
@ UBLOCK_BOPOMOFO_EXTENDED
Definition: uchar.h:1077
UCHAR_AGE
@ UCHAR_AGE
String property Age.
Definition: uchar.h:515
UBLOCK_ETHIOPIC_SUPPLEMENT
@ UBLOCK_ETHIOPIC_SUPPLEMENT
Definition: uchar.h:1266
UBLOCK_MANICHAEAN
@ UBLOCK_MANICHAEAN
Definition: uchar.h:1484
UBLOCK_GURMUKHI
@ UBLOCK_GURMUKHI
Definition: uchar.h:924
UCHAR_BIDI_PAIRED_BRACKET_TYPE
@ UCHAR_BIDI_PAIRED_BRACKET_TYPE
Enumerated property Bidi_Paired_Bracket_Type (new in Unicode 6.3).
Definition: uchar.h:487
UBLOCK_REJANG
@ UBLOCK_REJANG
Definition: uchar.h:1330
UCHAR_INVALID_CODE
@ UCHAR_INVALID_CODE
Represents a nonexistent or invalid property or property value.
Definition: uchar.h:578
U_JG_MANICHAEAN_RESH
@ U_JG_MANICHAEAN_RESH
Definition: uchar.h:1748
UBLOCK_BUHID
@ UBLOCK_BUHID
Definition: uchar.h:1192
U_CHAR_DIRECTION_COUNT
@ U_CHAR_DIRECTION_COUNT
Definition: uchar.h:832
UBLOCK_COMBINING_MARKS_FOR_SYMBOLS
@ UBLOCK_COMBINING_MARKS_FOR_SYMBOLS
Unicode 3.2 renames this block to "Combining Diacritical Marks for Symbols".
Definition: uchar.h:1005
U_UNICODE_10_CHAR_NAME
@ U_UNICODE_10_CHAR_NAME
The Unicode_1_Name property value which is of little practical value.
Definition: uchar.h:1575
UBLOCK_LATIN_EXTENDED_E
@ UBLOCK_LATIN_EXTENDED_E
Definition: uchar.h:1478
u_isUAlphabetic
UBool u_isUAlphabetic(UChar32 c)
Check if a code point has the Alphabetic Unicode property.
U_OTHER_NUMBER
@ U_OTHER_NUMBER
No.
Definition: uchar.h:620
UBLOCK_CYPRIOT_SYLLABARY
@ UBLOCK_CYPRIOT_SYLLABARY
Definition: uchar.h:1241
UBlockCode
UBlockCode
Constants for Unicode blocks, see the Unicode Data file Blocks.txt.
Definition: uchar.h:862
UCHAR_WHITE_SPACE
@ UCHAR_WHITE_SPACE
Binary property White_Space.
Definition: uchar.h:287
UBLOCK_EMOTICONS
@ UBLOCK_EMOTICONS
Definition: uchar.h:1422
UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C
@ UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C
Definition: uchar.h:1401
U_CURRENCY_SYMBOL
@ U_CURRENCY_SYMBOL
Sc.
Definition: uchar.h:648
U_LETTER_NUMBER
@ U_LETTER_NUMBER
Nl.
Definition: uchar.h:618
UProperty
UProperty
Selection constants for Unicode properties.
Definition: uchar.h:161
UBLOCK_MATHEMATICAL_ALPHANUMERIC_SYMBOLS
@ UBLOCK_MATHEMATICAL_ALPHANUMERIC_SYMBOLS
Definition: uchar.h:1170
UBLOCK_KHUDAWADI
@ UBLOCK_KHUDAWADI
Definition: uchar.h:1476
u_enumCharNames
void u_enumCharNames(UChar32 start, UChar32 limit, UEnumCharNamesFn *fn, void *context, UCharNameChoice nameChoice, UErrorCode *pErrorCode)
Enumerate all assigned Unicode characters between the start and limit code points (start inclusive,...
U_EUROPEAN_NUMBER
@ U_EUROPEAN_NUMBER
EN.
Definition: uchar.h:790
U_DEPRECATED
#define U_DEPRECATED
This is used to declare a function as a deprecated public ICU C API
Definition: umachine.h:113
UBLOCK_LYCIAN
@ UBLOCK_LYCIAN
Definition: uchar.h:1338
UBLOCK_INSCRIPTIONAL_PARTHIAN
@ UBLOCK_INSCRIPTIONAL_PARTHIAN
Definition: uchar.h:1385
U_COMMON_NUMBER_SEPARATOR
@ U_COMMON_NUMBER_SEPARATOR
CS.
Definition: uchar.h:798
UBLOCK_IDEOGRAPHIC_DESCRIPTION_CHARACTERS
@ UBLOCK_IDEOGRAPHIC_DESCRIPTION_CHARACTERS
Definition: uchar.h:1056
u_isJavaIDStart
UBool u_isJavaIDStart(UChar32 c)
Determines if the specified character is permissible as the first character in a Java identifier.
u_isMirrored
UBool u_isMirrored(UChar32 c)
Determines whether the code point has the Bidi_Mirrored property.
UBLOCK_VEDIC_EXTENSIONS
@ UBLOCK_VEDIC_EXTENSIONS
Definition: uchar.h:1357
UBLOCK_VAI
@ UBLOCK_VAI
Definition: uchar.h:1322
UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_B
@ UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_B
Definition: uchar.h:1212
UBLOCK_EGYPTIAN_HIEROGLYPHS
@ UBLOCK_EGYPTIAN_HIEROGLYPHS
Definition: uchar.h:1395
UBLOCK_PRIVATE_USE
@ UBLOCK_PRIVATE_USE
Same as UBLOCK_PRIVATE_USE_AREA.
Definition: uchar.h:1128
UBLOCK_ANCIENT_GREEK_NUMBERS
@ UBLOCK_ANCIENT_GREEK_NUMBERS
Definition: uchar.h:1252
U_CHAR_NAME_ALIAS
@ U_CHAR_NAME_ALIAS
Corrected name from NameAliases.txt.
Definition: uchar.h:1580
UBLOCK_YIJING_HEXAGRAM_SYMBOLS
@ UBLOCK_YIJING_HEXAGRAM_SYMBOLS
Definition: uchar.h:1227
U_SURROGATE
@ U_SURROGATE
Cs.
Definition: uchar.h:634
UCHAR_CASE_IGNORABLE
@ UCHAR_CASE_IGNORABLE
Binary property Case_Ignorable.
Definition: uchar.h:387
UBLOCK_ARABIC_PRESENTATION_FORMS_B
@ UBLOCK_ARABIC_PRESENTATION_FORMS_B
Definition: uchar.h:1149
UCHAR_CANONICAL_COMBINING_CLASS
@ UCHAR_CANONICAL_COMBINING_CLASS
Enumerated property Canonical_Combining_Class.
Definition: uchar.h:413
UCHAR_LINE_BREAK
@ UCHAR_LINE_BREAK
Enumerated property Line_Break.
Definition: uchar.h:432
UBLOCK_BALINESE
@ UBLOCK_BALINESE
Definition: uchar.h:1295
UBLOCK_AEGEAN_NUMBERS
@ UBLOCK_AEGEAN_NUMBERS
Definition: uchar.h:1233
u_digit
int32_t u_digit(UChar32 ch, int8_t radix)
Returns the decimal digit value of the code point in the specified radix.
UBLOCK_ANCIENT_SYMBOLS
@ UBLOCK_ANCIENT_SYMBOLS
Definition: uchar.h:1334
U_PARAGRAPH_SEPARATOR
@ U_PARAGRAPH_SEPARATOR
Zp.
Definition: uchar.h:626
UBLOCK_COMBINING_DIACRITICAL_MARKS_EXTENDED
@ UBLOCK_COMBINING_DIACRITICAL_MARKS_EXTENDED
Definition: uchar.h:1464
UBLOCK_BOPOMOFO
@ UBLOCK_BOPOMOFO
Definition: uchar.h:1068
UBLOCK_GEOMETRIC_SHAPES_EXTENDED
@ UBLOCK_GEOMETRIC_SHAPES_EXTENDED
Definition: uchar.h:1470
UEnumCharNamesFn
UBool UEnumCharNamesFn(void *context, UChar32 code, UCharNameChoice nameChoice, const char *name, int32_t length)
Type of a callback function for u_enumCharNames() that gets called for each Unicode character with th...
Definition: uchar.h:2886
UBLOCK_DEVANAGARI
@ UBLOCK_DEVANAGARI
Definition: uchar.h:918
UCHAR_GENERAL_CATEGORY_MASK
@ UCHAR_GENERAL_CATEGORY_MASK
Bitmask property General_Category_Mask.
Definition: uchar.h:499
UCHAR_UPPERCASE_MAPPING
@ UCHAR_UPPERCASE_MAPPING
String property Uppercase_Mapping.
Definition: uchar.h:559
UBLOCK_TIBETAN
@ UBLOCK_TIBETAN
Definition: uchar.h:954
UHangulSyllableType
UHangulSyllableType
Hangul Syllable Type constants.
Definition: uchar.h:1941
u_tolower
UChar32 u_tolower(UChar32 c)
The given character is mapped to its lowercase equivalent according to UnicodeData....
UBLOCK_COMBINING_DIACRITICAL_MARKS_SUPPLEMENT
@ UBLOCK_COMBINING_DIACRITICAL_MARKS_SUPPLEMENT
Definition: uchar.h:1260
u_isbase
UBool u_isbase(UChar32 c)
Determines whether the specified code point is a base character.
UBLOCK_MAHJONG_TILES
@ UBLOCK_MAHJONG_TILES
Definition: uchar.h:1344
UBLOCK_OGHAM
@ UBLOCK_OGHAM
Definition: uchar.h:975
U_JG_MANICHAEAN_TAW
@ U_JG_MANICHAEAN_TAW
Definition: uchar.h:1751
UBLOCK_ARABIC_SUPPLEMENT
@ UBLOCK_ARABIC_SUPPLEMENT
Definition: uchar.h:1254
UCHAR_DASH
@ UCHAR_DASH
Binary property Dash.
Definition: uchar.h:190
UBLOCK_SPECIALS
@ UBLOCK_SPECIALS
Definition: uchar.h:1152
U_NON_SPACING_MARK
@ U_NON_SPACING_MARK
Mn.
Definition: uchar.h:610
UBLOCK_TAI_LE
@ UBLOCK_TAI_LE
Definition: uchar.h:1219
u_isdefined
UBool u_isdefined(UChar32 c)
Determines whether the specified code point is "defined", which usually means that it is assigned a c...
U_WHITE_SPACE_NEUTRAL
@ U_WHITE_SPACE_NEUTRAL
WS.
Definition: uchar.h:804
u_charType
int8_t u_charType(UChar32 c)
Returns the general category value for the code point.
U_FIRST_STRONG_ISOLATE
@ U_FIRST_STRONG_ISOLATE
FSI.
Definition: uchar.h:824
U_MODIFIER_LETTER
@ U_MODIFIER_LETTER
Lm.
Definition: uchar.h:606
UCHAR_BIDI_MIRRORED
@ UCHAR_BIDI_MIRRORED
Binary property Bidi_Mirrored.
Definition: uchar.h:188
UCHAR_BIDI_MIRRORING_GLYPH
@ UCHAR_BIDI_MIRRORING_GLYPH
String property Bidi_Mirroring_Glyph.
Definition: uchar.h:520
U_JG_MANICHAEAN_DHAMEDH
@ U_JG_MANICHAEAN_DHAMEDH
Definition: uchar.h:1736
UBLOCK_OLD_TURKIC
@ UBLOCK_OLD_TURKIC
Definition: uchar.h:1389
UBLOCK_TAKRI
@ UBLOCK_TAKRI
Definition: uchar.h:1453
UBLOCK_DUPLOYAN
@ UBLOCK_DUPLOYAN
Definition: uchar.h:1466
UCHAR_INT_START
@ UCHAR_INT_START
First constant for enumerated/integer Unicode properties.
Definition: uchar.h:407
UBLOCK_NKO
@ UBLOCK_NKO
Definition: uchar.h:1293
UBLOCK_IPA_EXTENSIONS
@ UBLOCK_IPA_EXTENSIONS
Definition: uchar.h:885
U_LEFT_TO_RIGHT_ISOLATE
@ U_LEFT_TO_RIGHT_ISOLATE
LRI.
Definition: uchar.h:826
UBLOCK_TRANSPORT_AND_MAP_SYMBOLS
@ UBLOCK_TRANSPORT_AND_MAP_SYMBOLS
Definition: uchar.h:1424
UCHAR_EXTENDER
@ UCHAR_EXTENDER
Binary property Extender.
Definition: uchar.h:204
UCHAR_IDS_TRINARY_OPERATOR
@ UCHAR_IDS_TRINARY_OPERATOR
Binary property IDS_Trinary_Operator (new in Unicode 3.2).
Definition: uchar.h:245
u_isalpha
UBool u_isalpha(UChar32 c)
Determines whether the specified code point is a letter character.
UCHAR_CHANGES_WHEN_UPPERCASED
@ UCHAR_CHANGES_WHEN_UPPERCASED
Binary property Changes_When_Uppercased.
Definition: uchar.h:391
UBLOCK_KANGXI_RADICALS
@ UBLOCK_KANGXI_RADICALS
Definition: uchar.h:1053
UBLOCK_ARABIC
@ UBLOCK_ARABIC
Definition: uchar.h:909
UBLOCK_SAURASHTRA
@ UBLOCK_SAURASHTRA
Definition: uchar.h:1326
UCHAR_DECOMPOSITION_TYPE
@ UCHAR_DECOMPOSITION_TYPE
Enumerated property Decomposition_Type.
Definition: uchar.h:416
UCHAR_IDS_BINARY_OPERATOR
@ UCHAR_IDS_BINARY_OPERATOR
Binary property IDS_Binary_Operator (new in Unicode 3.2).
Definition: uchar.h:241
U_RIGHT_TO_LEFT_ISOLATE
@ U_RIGHT_TO_LEFT_ISOLATE
RLI.
Definition: uchar.h:828
UBLOCK_BENGALI
@ UBLOCK_BENGALI
Definition: uchar.h:921
UBLOCK_PHAISTOS_DISC
@ UBLOCK_PHAISTOS_DISC
Definition: uchar.h:1336
U_PRIVATE_USE_CHAR
@ U_PRIVATE_USE_CHAR
Co.
Definition: uchar.h:632
UBLOCK_NO_BLOCK
@ UBLOCK_NO_BLOCK
New No_Block value in Unicode 4.
Definition: uchar.h:870
UBLOCK_HIRAGANA
@ UBLOCK_HIRAGANA
Definition: uchar.h:1062
UJoiningType
UJoiningType
Joining Type constants.
Definition: uchar.h:1644
UBLOCK_CYRILLIC_EXTENDED_A
@ UBLOCK_CYRILLIC_EXTENDED_A
Definition: uchar.h:1320
U_JG_MANICHAEAN_PE
@ U_JG_MANICHAEAN_PE
Definition: uchar.h:1746
u_getCombiningClass
uint8_t u_getCombiningClass(UChar32 c)
Returns the combining class of the code point as specified in UnicodeData.txt.
UCHAR_MATH
@ UCHAR_MATH
Binary property Math.
Definition: uchar.h:257
UCHAR_MASK_START
@ UCHAR_MASK_START
First constant for bit-mask Unicode properties.
Definition: uchar.h:501
U_JG_MANICHAEAN_LAMEDH
@ U_JG_MANICHAEAN_LAMEDH
Definition: uchar.h:1742
UCHAR_DIACRITIC
@ UCHAR_DIACRITIC
Binary property Diacritic.
Definition: uchar.h:200
u_isblank
UBool u_isblank(UChar32 c)
Determines whether the specified code point is a "blank" or "horizontal space", a character that visi...
UBLOCK_ARABIC_EXTENDED_A
@ UBLOCK_ARABIC_EXTENDED_A
Definition: uchar.h:1433
UBLOCK_ORIYA
@ UBLOCK_ORIYA
Definition: uchar.h:930
UBLOCK_BUGINESE
@ UBLOCK_BUGINESE
Definition: uchar.h:1256
UCHAR_IDEOGRAPHIC
@ UCHAR_IDEOGRAPHIC
Binary property Ideographic.
Definition: uchar.h:237
UPropertyNameChoice
UPropertyNameChoice
Selector constants for u_getPropertyName() and u_getPropertyValueName().
Definition: uchar.h:1598
UChar32
int32_t UChar32
Define UChar32 as a type for single Unicode code points.
Definition: umachine.h:332
UBLOCK_COMMON_INDIC_NUMBER_FORMS
@ UBLOCK_COMMON_INDIC_NUMBER_FORMS
Definition: uchar.h:1363
U_OTHER_NEUTRAL
@ U_OTHER_NEUTRAL
ON.
Definition: uchar.h:806
UBLOCK_GENERAL_PUNCTUATION
@ UBLOCK_GENERAL_PUNCTUATION
Definition: uchar.h:993
UBLOCK_ENCLOSED_ALPHANUMERIC_SUPPLEMENT
@ UBLOCK_ENCLOSED_ALPHANUMERIC_SUPPLEMENT
Definition: uchar.h:1397
UCHAR_GRAPHEME_BASE
@ UCHAR_GRAPHEME_BASE
Binary property Grapheme_Base (new in Unicode 3.2).
Definition: uchar.h:212
U_JG_MANICHAEAN_GIMEL
@ U_JG_MANICHAEAN_GIMEL
Definition: uchar.h:1738
UBLOCK_MATHEMATICAL_OPERATORS
@ UBLOCK_MATHEMATICAL_OPERATORS
Definition: uchar.h:1017
UCHAR_ID_START
@ UCHAR_ID_START
Binary property ID_Start.
Definition: uchar.h:234
U_OTHER_LETTER
@ U_OTHER_LETTER
Lo.
Definition: uchar.h:608
UCHAR_QUOTATION_MARK
@ UCHAR_QUOTATION_MARK
Binary property Quotation_Mark.
Definition: uchar.h:263
UBLOCK_ALPHABETIC_PRESENTATION_FORMS
@ UBLOCK_ALPHABETIC_PRESENTATION_FORMS
Definition: uchar.h:1134
UCHAR_DEFAULT_IGNORABLE_CODE_POINT
@ UCHAR_DEFAULT_IGNORABLE_CODE_POINT
Binary property Default_Ignorable_Code_Point (new in Unicode 3.2).
Definition: uchar.h:194
U_DECIMAL_DIGIT_NUMBER
@ U_DECIMAL_DIGIT_NUMBER
Nd.
Definition: uchar.h:616
u_isdigit
UBool u_isdigit(UChar32 c)
Determines whether the specified code point is a digit character according to Java.
UErrorCode
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers,...
Definition: utypes.h:476
UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_A
@ UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_A
Definition: uchar.h:1210
UBLOCK_PALMYRENE
@ UBLOCK_PALMYRENE
Definition: uchar.h:1504
U_SPACE_SEPARATOR
@ U_SPACE_SEPARATOR
Zs.
Definition: uchar.h:622
UBLOCK_LYDIAN
@ UBLOCK_LYDIAN
Definition: uchar.h:1342
UBLOCK_CJK_COMPATIBILITY_FORMS
@ UBLOCK_CJK_COMPATIBILITY_FORMS
Definition: uchar.h:1143
UCharDirection
UCharDirection
This specifies the language directional property of a character set.
Definition: uchar.h:777
UBLOCK_TIFINAGH
@ UBLOCK_TIFINAGH
Definition: uchar.h:1286
UCHAR_BINARY_START
@ UCHAR_BINARY_START
First constant for binary Unicode properties.
Definition: uchar.h:177
UCHAR_CHANGES_WHEN_LOWERCASED
@ UCHAR_CHANGES_WHEN_LOWERCASED
Binary property Changes_When_Lowercased.
Definition: uchar.h:389
U_JG_MANICHAEAN_SAMEKH
@ U_JG_MANICHAEAN_SAMEKH
Definition: uchar.h:1750
UBLOCK_GEORGIAN
@ UBLOCK_GEORGIAN
Definition: uchar.h:960
UBLOCK_KATAKANA_PHONETIC_EXTENSIONS
@ UBLOCK_KATAKANA_PHONETIC_EXTENSIONS
Definition: uchar.h:1206
u_isIDIgnorable
UBool u_isIDIgnorable(UChar32 c)
Determines if the specified character should be regarded as an ignorable character in an identifier,...
UBLOCK_KANNADA
@ UBLOCK_KANNADA
Definition: uchar.h:939
u_charMirror
UChar32 u_charMirror(UChar32 c)
Maps the specified character to a "mirror-image" character.
UBLOCK_SUNDANESE
@ UBLOCK_SUNDANESE
Definition: uchar.h:1314
UBLOCK_HANGUL_JAMO_EXTENDED_A
@ UBLOCK_HANGUL_JAMO_EXTENDED_A
Definition: uchar.h:1367
UBLOCK_COMBINING_DIACRITICAL_MARKS
@ UBLOCK_COMBINING_DIACRITICAL_MARKS
Definition: uchar.h:891
U_EUROPEAN_NUMBER_SEPARATOR
@ U_EUROPEAN_NUMBER_SEPARATOR
ES.
Definition: uchar.h:792
UCHAR_HANGUL_SYLLABLE_TYPE
@ UCHAR_HANGUL_SYLLABLE_TYPE
Enumerated property Hangul_Syllable_Type, new in Unicode 4.
Definition: uchar.h:441
UBLOCK_SMALL_FORM_VARIANTS
@ UBLOCK_SMALL_FORM_VARIANTS
Definition: uchar.h:1146
UCHAR_NFD_INERT
@ UCHAR_NFD_INERT
Binary property NFD_Inert.
Definition: uchar.h:316
UBLOCK_RUMI_NUMERAL_SYMBOLS
@ UBLOCK_RUMI_NUMERAL_SYMBOLS
Definition: uchar.h:1391
UBLOCK_BRAHMI
@ UBLOCK_BRAHMI
Definition: uchar.h:1412
ublock_getCode
UBlockCode ublock_getCode(UChar32 c)
Returns the Unicode allocation block that contains the character.
UCHAR_NUMERIC_TYPE
@ UCHAR_NUMERIC_TYPE
Enumerated property Numeric_Type.
Definition: uchar.h:435
U_JG_MANICHAEAN_TEN
@ U_JG_MANICHAEAN_TEN
Definition: uchar.h:1752
UBLOCK_OL_CHIKI
@ UBLOCK_OL_CHIKI
Definition: uchar.h:1318
UBLOCK_MEROITIC_HIEROGLYPHS
@ UBLOCK_MEROITIC_HIEROGLYPHS
Definition: uchar.h:1443
UBLOCK_THAANA
@ UBLOCK_THAANA
Definition: uchar.h:915
UBLOCK_KAYAH_LI
@ UBLOCK_KAYAH_LI
Definition: uchar.h:1328
UBLOCK_ETHIOPIC_EXTENDED_A
@ UBLOCK_ETHIOPIC_EXTENDED_A
Definition: uchar.h:1410
U_LB_INSEPARABLE
@ U_LB_INSEPARABLE
Renamed from the misspelled "inseperable" in Unicode 4.0.1/ICU 3.0.
Definition: uchar.h:1886
U_DIR_NON_SPACING_MARK
@ U_DIR_NON_SPACING_MARK
NSM.
Definition: uchar.h:820
UBLOCK_ORNAMENTAL_DINGBATS
@ UBLOCK_ORNAMENTAL_DINGBATS
Definition: uchar.h:1500
UCHAR_GRAPHEME_CLUSTER_BREAK
@ UCHAR_GRAPHEME_CLUSTER_BREAK
Enumerated property Grapheme_Cluster_Break (new in Unicode 4.1).
Definition: uchar.h:472
U_JG_MANICHAEAN_MEM
@ U_JG_MANICHAEAN_MEM
Definition: uchar.h:1743
UGraphemeClusterBreak
UGraphemeClusterBreak
Grapheme Cluster Break constants.
Definition: uchar.h:1769
u_charFromName
UChar32 u_charFromName(UCharNameChoice nameChoice, const char *name, UErrorCode *pErrorCode)
Find a Unicode character by its name and return its code point value.
UCHAR_LOWERCASE_MAPPING
@ UCHAR_LOWERCASE_MAPPING
String property Lowercase_Mapping.
Definition: uchar.h:531
U_LEFT_TO_RIGHT_OVERRIDE
@ U_LEFT_TO_RIGHT_OVERRIDE
LRO.
Definition: uchar.h:810
U_MODIFIER_SYMBOL
@ U_MODIFIER_SYMBOL
Sk.
Definition: uchar.h:650
UBLOCK_NABATAEAN
@ UBLOCK_NABATAEAN
Definition: uchar.h:1494
U_BPT_CLOSE
@ U_BPT_CLOSE
Close paired bracket.
Definition: uchar.h:853
UCHAR_POSIX_PRINT
@ UCHAR_POSIX_PRINT
Binary property print (a C/POSIX character class).
Definition: uchar.h:378
UBLOCK_LATIN_EXTENDED_C
@ UBLOCK_LATIN_EXTENDED_C
Definition: uchar.h:1297
UBLOCK_ETHIOPIC_EXTENDED
@ UBLOCK_ETHIOPIC_EXTENDED
Definition: uchar.h:1264
U_JG_MANICHAEAN_YODH
@ U_JG_MANICHAEAN_YODH
Definition: uchar.h:1757
UBLOCK_SYRIAC
@ UBLOCK_SYRIAC
Definition: uchar.h:912
UBLOCK_SUPPLEMENTAL_ARROWS_C
@ UBLOCK_SUPPLEMENTAL_ARROWS_C
Definition: uchar.h:1516
U_RIGHT_TO_LEFT
@ U_RIGHT_TO_LEFT
R.
Definition: uchar.h:788
USentenceBreak
USentenceBreak
Sentence Break constants.
Definition: uchar.h:1832
u_getPropertyValueName
const char * u_getPropertyValueName(UProperty property, int32_t value, UPropertyNameChoice nameChoice)
Return the Unicode name for a given property value, as given in the Unicode database file PropertyVal...
UCHAR_JOINING_GROUP
@ UCHAR_JOINING_GROUP
Enumerated property Joining_Group.
Definition: uchar.h:426
UBLOCK_KANA_SUPPLEMENT
@ UBLOCK_KANA_SUPPLEMENT
Definition: uchar.h:1416
UBLOCK_BASIC_LATIN
@ UBLOCK_BASIC_LATIN
Definition: uchar.h:873
U_CONNECTOR_PUNCTUATION
@ U_CONNECTOR_PUNCTUATION
Pc.
Definition: uchar.h:642
UCharCategory
UCharCategory
Data for enumerated Unicode general category types.
Definition: uchar.h:587
UCHAR_NFKC_QUICK_CHECK
@ UCHAR_NFKC_QUICK_CHECK
Enumerated property NFKC_Quick_Check.
Definition: uchar.h:453
u_isJavaSpaceChar
UBool u_isJavaSpaceChar(UChar32 c)
Determine if the specified code point is a space character according to Java.
U_LEFT_TO_RIGHT_EMBEDDING
@ U_LEFT_TO_RIGHT_EMBEDDING
LRE.
Definition: uchar.h:808
UCHAR_WORD_BREAK
@ UCHAR_WORD_BREAK
Enumerated property Word_Break (new in Unicode 4.1).
Definition: uchar.h:482
UCHAR_DOUBLE_START
@ UCHAR_DOUBLE_START
First constant for double Unicode properties.
Definition: uchar.h:509
UCHAR_CHANGES_WHEN_NFKC_CASEFOLDED
@ UCHAR_CHANGES_WHEN_NFKC_CASEFOLDED
Binary property Changes_When_NFKC_Casefolded.
Definition: uchar.h:399
U_JG_MANICHAEAN_FIVE
@ U_JG_MANICHAEAN_FIVE
Definition: uchar.h:1737
u_foldCase
UChar32 u_foldCase(UChar32 c, uint32_t options)
The given character is mapped to its case folding equivalent according to UnicodeData....
UBLOCK_CAUCASIAN_ALBANIAN
@ UBLOCK_CAUCASIAN_ALBANIAN
Definition: uchar.h:1460
U_POP_DIRECTIONAL_FORMAT
@ U_POP_DIRECTIONAL_FORMAT
PDF.
Definition: uchar.h:818
U_CDECL_END
#define U_CDECL_END
This is used to end a declaration of a library private ICU C API.
Definition: umachine.h:83
UCHAR_CASED
@ UCHAR_CASED
Binary property Cased.
Definition: uchar.h:385
UBLOCK_MRO
@ UBLOCK_MRO
Definition: uchar.h:1490
U_CDECL_BEGIN
#define U_CDECL_BEGIN
This is used to begin a declaration of a library private ICU C API.
Definition: umachine.h:82
UBLOCK_HANUNOO
@ UBLOCK_HANUNOO
Definition: uchar.h:1190
UBLOCK_BYZANTINE_MUSICAL_SYMBOLS
@ UBLOCK_BYZANTINE_MUSICAL_SYMBOLS
Definition: uchar.h:1166
UBLOCK_COMBINING_HALF_MARKS
@ UBLOCK_COMBINING_HALF_MARKS
Definition: uchar.h:1140
UCHAR_CHANGES_WHEN_CASEFOLDED
@ UCHAR_CHANGES_WHEN_CASEFOLDED
Binary property Changes_When_Casefolded.
Definition: uchar.h:395
UBLOCK_THAI
@ UBLOCK_THAI
Definition: uchar.h:948
UBLOCK_KATAKANA
@ UBLOCK_KATAKANA
Definition: uchar.h:1065
UBLOCK_ANCIENT_GREEK_MUSICAL_NOTATION
@ UBLOCK_ANCIENT_GREEK_MUSICAL_NOTATION
Definition: uchar.h:1250
U_CHAR_NAME_CHOICE_COUNT
@ U_CHAR_NAME_CHOICE_COUNT
Definition: uchar.h:1582
UBLOCK_BOX_DRAWING
@ UBLOCK_BOX_DRAWING
Definition: uchar.h:1032
UCHAR_POSIX_ALNUM
@ UCHAR_POSIX_ALNUM
Binary property alnum (a C/POSIX character class).
Definition: uchar.h:363
u_isUWhiteSpace
UBool u_isUWhiteSpace(UChar32 c)
Check if a code point has the White_Space Unicode property.
u_isJavaIDPart
UBool u_isJavaIDPart(UChar32 c)
Determines if the specified character is permissible in a Java identifier.
UBLOCK_VERTICAL_FORMS
@ UBLOCK_VERTICAL_FORMS
Definition: uchar.h:1288
UBLOCK_AVESTAN
@ UBLOCK_AVESTAN
Definition: uchar.h:1383
UBLOCK_TAI_XUAN_JING_SYMBOLS
@ UBLOCK_TAI_XUAN_JING_SYMBOLS
Definition: uchar.h:1243
UCHAR_TRAIL_CANONICAL_COMBINING_CLASS
@ UCHAR_TRAIL_CANONICAL_COMBINING_CLASS
Enumerated property Trail_Canonical_Combining_Class.
Definition: uchar.h:467
UBLOCK_BATAK
@ UBLOCK_BATAK
Definition: uchar.h:1408
U_RIGHT_TO_LEFT_OVERRIDE
@ U_RIGHT_TO_LEFT_OVERRIDE
RLO.
Definition: uchar.h:816
UCHAR_DEPRECATED
@ UCHAR_DEPRECATED
Binary property Deprecated (new in Unicode 3.2).
Definition: uchar.h:197
U_BPT_NONE
@ U_BPT_NONE
Not a paired bracket.
Definition: uchar.h:849
UCHAR_UPPERCASE
@ UCHAR_UPPERCASE
Binary property Uppercase.
Definition: uchar.h:283
UBLOCK_LATIN_EXTENDED_A
@ UBLOCK_LATIN_EXTENDED_A
Definition: uchar.h:879
UDecompositionType
UDecompositionType
Decomposition Type constants.
Definition: uchar.h:1610
U_UPPERCASE_LETTER
@ U_UPPERCASE_LETTER
Lu.
Definition: uchar.h:600
UBLOCK_IMPERIAL_ARAMAIC
@ UBLOCK_IMPERIAL_ARAMAIC
Definition: uchar.h:1379
UBLOCK_GUJARATI
@ UBLOCK_GUJARATI
Definition: uchar.h:927
u_toupper
UChar32 u_toupper(UChar32 c)
The given character is mapped to its uppercase equivalent according to UnicodeData....
UBLOCK_TAI_THAM
@ UBLOCK_TAI_THAM
Definition: uchar.h:1355
U_LEFT_TO_RIGHT
@ U_LEFT_TO_RIGHT
L.
Definition: uchar.h:786
UBLOCK_PRIVATE_USE_AREA
@ UBLOCK_PRIVATE_USE_AREA
Same as UBLOCK_PRIVATE_USE.
Definition: uchar.h:1118
U_START_PUNCTUATION
@ U_START_PUNCTUATION
Ps.
Definition: uchar.h:638
UBLOCK_GRANTHA
@ UBLOCK_GRANTHA
Definition: uchar.h:1472
U_GENERAL_OTHER_TYPES
@ U_GENERAL_OTHER_TYPES
Cn "Other, Not Assigned (no characters in [UnicodeData.txt] have this property)" (same as U_UNASSIGNE...
Definition: uchar.h:598
UBLOCK_HIGH_PRIVATE_USE_SURROGATES
@ UBLOCK_HIGH_PRIVATE_USE_SURROGATES
Definition: uchar.h:1104
U_JG_FE
@ U_JG_FE
Definition: uchar.h:1725
UBLOCK_INVALID_CODE
@ UBLOCK_INVALID_CODE
Definition: uchar.h:1526
UCHAR_S_TERM
@ UCHAR_S_TERM
Binary property STerm (new in Unicode 4.0.1).
Definition: uchar.h:303
UBLOCK_CHEROKEE
@ UBLOCK_CHEROKEE
Definition: uchar.h:969
u_getPropertyEnum
UProperty u_getPropertyEnum(const char *alias)
Return the UProperty enum for a given property name, as specified in the Unicode database file Proper...
U_UNASSIGNED
@ U_UNASSIGNED
Non-category for unassigned and non-character code points.
Definition: uchar.h:596
UCHAR_BIDI_CLASS
@ UCHAR_BIDI_CLASS
Enumerated property Bidi_Class.
Definition: uchar.h:405
UBLOCK_SINHALA
@ UBLOCK_SINHALA
Definition: uchar.h:945
UBLOCK_SYLOTI_NAGRI
@ UBLOCK_SYLOTI_NAGRI
Definition: uchar.h:1284
u_istitle
UBool u_istitle(UChar32 c)
Determines whether the specified code point is a titlecase letter.
UBLOCK_MEETEI_MAYEK
@ UBLOCK_MEETEI_MAYEK
Definition: uchar.h:1375
UCHAR_TERMINAL_PUNCTUATION
@ UCHAR_TERMINAL_PUNCTUATION
Binary property Terminal_Punctuation.
Definition: uchar.h:276
UBLOCK_PSALTER_PAHLAVI
@ UBLOCK_PSALTER_PAHLAVI
Definition: uchar.h:1508
UBLOCK_OLD_ITALIC
@ UBLOCK_OLD_ITALIC
Definition: uchar.h:1160
UBLOCK_BAMUM_SUPPLEMENT
@ UBLOCK_BAMUM_SUPPLEMENT
Definition: uchar.h:1414
UCHAR_NFC_QUICK_CHECK
@ UCHAR_NFC_QUICK_CHECK
Enumerated property NFC_Quick_Check.
Definition: uchar.h:450
UBLOCK_CYRILLIC
@ UBLOCK_CYRILLIC
Definition: uchar.h:900
UCHAR_JOIN_CONTROL
@ UCHAR_JOIN_CONTROL
Binary property Join_Control.
Definition: uchar.h:248
UBLOCK_ALCHEMICAL_SYMBOLS
@ UBLOCK_ALCHEMICAL_SYMBOLS
Definition: uchar.h:1426
UBLOCK_MUSICAL_SYMBOLS
@ UBLOCK_MUSICAL_SYMBOLS
Definition: uchar.h:1168
UBLOCK_BRAILLE_PATTERNS
@ UBLOCK_BRAILLE_PATTERNS
Definition: uchar.h:1047
U_JG_MANICHAEAN_TETH
@ U_JG_MANICHAEAN_TETH
Definition: uchar.h:1753
u_isprint
UBool u_isprint(UChar32 c)
Determines whether the specified code point is a printable character.
UCHAR_SCRIPT
@ UCHAR_SCRIPT
Enumerated property Script.
Definition: uchar.h:438
UBLOCK_CUNEIFORM
@ UBLOCK_CUNEIFORM
Definition: uchar.h:1305
UBLOCK_CURRENCY_SYMBOLS
@ UBLOCK_CURRENCY_SYMBOLS
Definition: uchar.h:999
UCHAR_SOFT_DOTTED
@ UCHAR_SOFT_DOTTED
Binary property Soft_Dotted (new in Unicode 3.2).
Definition: uchar.h:272
UBLOCK_BLOCK_ELEMENTS
@ UBLOCK_BLOCK_ELEMENTS
Definition: uchar.h:1035
UBLOCK_VARIATION_SELECTORS_SUPPLEMENT
@ UBLOCK_VARIATION_SELECTORS_SUPPLEMENT
Definition: uchar.h:1245
UCharEnumTypeRange
UBool UCharEnumTypeRange(const void *context, UChar32 start, UChar32 limit, UCharCategory type)
Callback from u_enumCharTypes(), is called for each contiguous range of code points c (where start<=c...
Definition: uchar.h:2706
UBLOCK_ENCLOSED_CJK_LETTERS_AND_MONTHS
@ UBLOCK_ENCLOSED_CJK_LETTERS_AND_MONTHS
Definition: uchar.h:1080
UCHAR_GENERAL_CATEGORY
@ UCHAR_GENERAL_CATEGORY
Enumerated property General_Category.
Definition: uchar.h:423
U_BPT_OPEN
@ U_BPT_OPEN
Open paired bracket.
Definition: uchar.h:851
UBLOCK_MISCELLANEOUS_SYMBOLS_AND_ARROWS
@ UBLOCK_MISCELLANEOUS_SYMBOLS_AND_ARROWS
Definition: uchar.h:1225
u_isxdigit
UBool u_isxdigit(UChar32 c)
Determines whether the specified code point is a hexadecimal digit.
UCHAR_EAST_ASIAN_WIDTH
@ UCHAR_EAST_ASIAN_WIDTH
Enumerated property East_Asian_Width.
Definition: uchar.h:420
UWordBreakValues
UWordBreakValues
Word Break constants.
Definition: uchar.h:1799
U_JG_MANICHAEAN_SADHE
@ U_JG_MANICHAEAN_SADHE
Definition: uchar.h:1749
U_END_PUNCTUATION
@ U_END_PUNCTUATION
Pe.
Definition: uchar.h:640
UBLOCK_PAU_CIN_HAU
@ UBLOCK_PAU_CIN_HAU
Definition: uchar.h:1506
UBLOCK_SINHALA_ARCHAIC_NUMBERS
@ UBLOCK_SINHALA_ARCHAIC_NUMBERS
Definition: uchar.h:1514
UBLOCK_ETHIOPIC
@ UBLOCK_ETHIOPIC
Definition: uchar.h:966
U_MATH_SYMBOL
@ U_MATH_SYMBOL
Sm.
Definition: uchar.h:646
UBLOCK_HALFWIDTH_AND_FULLWIDTH_FORMS
@ UBLOCK_HALFWIDTH_AND_FULLWIDTH_FORMS
Definition: uchar.h:1155
UCHAR_SIMPLE_LOWERCASE_MAPPING
@ UCHAR_SIMPLE_LOWERCASE_MAPPING
String property Simple_Lowercase_Mapping.
Definition: uchar.h:540
UBLOCK_CHAKMA
@ UBLOCK_CHAKMA
Definition: uchar.h:1437
UCHAR_CHANGES_WHEN_TITLECASED
@ UCHAR_CHANGES_WHEN_TITLECASED
Binary property Changes_When_Titlecased.
Definition: uchar.h:393
UEastAsianWidth
UEastAsianWidth
East Asian Width constants.
Definition: uchar.h:1539
u_isIDPart
UBool u_isIDPart(UChar32 c)
Determines if the specified character is permissible in an identifier according to Java.
UBLOCK_SHAVIAN
@ UBLOCK_SHAVIAN
Definition: uchar.h:1237
u_isgraph
UBool u_isgraph(UChar32 c)
Determines whether the specified code point is a "graphic" character (printable, excluding spaces).
UBLOCK_DEVANAGARI_EXTENDED
@ UBLOCK_DEVANAGARI_EXTENDED
Definition: uchar.h:1365
U_INITIAL_PUNCTUATION
@ U_INITIAL_PUNCTUATION
Pi.
Definition: uchar.h:654
UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B
@ UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B
Definition: uchar.h:1202
UBLOCK_LATIN_EXTENDED_ADDITIONAL
@ UBLOCK_LATIN_EXTENDED_ADDITIONAL
Definition: uchar.h:987
u_ispunct
UBool u_ispunct(UChar32 c)
Determines whether the specified code point is a punctuation character.
UBLOCK_PHONETIC_EXTENSIONS_SUPPLEMENT
@ UBLOCK_PHONETIC_EXTENSIONS_SUPPLEMENT
Definition: uchar.h:1280
UBLOCK_KHAROSHTHI
@ UBLOCK_KHAROSHTHI
Definition: uchar.h:1272
U_JG_MANICHAEAN_TWENTY
@ U_JG_MANICHAEAN_TWENTY
Definition: uchar.h:1755
UBLOCK_ELBASAN
@ UBLOCK_ELBASAN
Definition: uchar.h:1468
UBLOCK_BASSA_VAH
@ UBLOCK_BASSA_VAH
Definition: uchar.h:1458
UBLOCK_TAMIL
@ UBLOCK_TAMIL
Definition: uchar.h:933
U_JG_MANICHAEAN_HUNDRED
@ U_JG_MANICHAEAN_HUNDRED
Definition: uchar.h:1740
UBLOCK_TAGS
@ UBLOCK_TAGS
Definition: uchar.h:1176
UBLOCK_MYANMAR
@ UBLOCK_MYANMAR
Definition: uchar.h:957
UBLOCK_LATIN_1_SUPPLEMENT
@ UBLOCK_LATIN_1_SUPPLEMENT
Definition: uchar.h:876
UBLOCK_LATIN_EXTENDED_B
@ UBLOCK_LATIN_EXTENDED_B
Definition: uchar.h:882
UBLOCK_ENCLOSED_ALPHANUMERICS
@ UBLOCK_ENCLOSED_ALPHANUMERICS
Definition: uchar.h:1029
UCHAR_INT_LIMIT
@ UCHAR_INT_LIMIT
One more than the last constant for enumerated/integer Unicode properties.
Definition: uchar.h:489
UBLOCK_LINEAR_B_SYLLABARY
@ UBLOCK_LINEAR_B_SYLLABARY
Definition: uchar.h:1229
UCHAR_STRING_START
@ UCHAR_STRING_START
First constant for string Unicode properties.
Definition: uchar.h:517
U_CONTROL_CHAR
@ U_CONTROL_CHAR
Cc.
Definition: uchar.h:628
UBLOCK_LINEAR_B_IDEOGRAMS
@ UBLOCK_LINEAR_B_IDEOGRAMS
Definition: uchar.h:1231
U_JG_MANICHAEAN_DALETH
@ U_JG_MANICHAEAN_DALETH
Definition: uchar.h:1735
UBLOCK_GEORGIAN_SUPPLEMENT
@ UBLOCK_GEORGIAN_SUPPLEMENT
Definition: uchar.h:1268
UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B
@ UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B
Definition: uchar.h:1172
UBLOCK_COPTIC
@ UBLOCK_COPTIC
Definition: uchar.h:1262
U_UNICODE_CHAR_NAME
@ U_UNICODE_CHAR_NAME
Unicode character name (Name property).
Definition: uchar.h:1568
u_getPropertyName
const char * u_getPropertyName(UProperty property, UPropertyNameChoice nameChoice)
Return the Unicode name for a given property, as given in the Unicode database file PropertyAliases....
UBLOCK_HANGUL_JAMO_EXTENDED_B
@ UBLOCK_HANGUL_JAMO_EXTENDED_B
Definition: uchar.h:1377
UBLOCK_INSCRIPTIONAL_PAHLAVI
@ UBLOCK_INSCRIPTIONAL_PAHLAVI
Definition: uchar.h:1387
UBLOCK_SUPPLEMENTAL_PUNCTUATION
@ UBLOCK_SUPPLEMENTAL_PUNCTUATION
Definition: uchar.h:1282
U_JG_BURUSHASKI_YEH_BARREE
@ U_JG_BURUSHASKI_YEH_BARREE
Definition: uchar.h:1728
UCHAR_SEGMENT_STARTER
@ UCHAR_SEGMENT_STARTER
Binary Property Segment_Starter.
Definition: uchar.h:348
UBLOCK_SHARADA
@ UBLOCK_SHARADA
Definition: uchar.h:1447
UBLOCK_OLD_PERSIAN
@ UBLOCK_OLD_PERSIAN
Definition: uchar.h:1278
UBLOCK_KHOJKI
@ UBLOCK_KHOJKI
Definition: uchar.h:1474
UBLOCK_YI_RADICALS
@ UBLOCK_YI_RADICALS
Definition: uchar.h:1095
UBLOCK_DOMINO_TILES
@ UBLOCK_DOMINO_TILES
Definition: uchar.h:1346
U_JG_KHAPH
@ U_JG_KHAPH
Definition: uchar.h:1726
UCHAR_NFKD_QUICK_CHECK
@ UCHAR_NFKD_QUICK_CHECK
Enumerated property NFKD_Quick_Check.
Definition: uchar.h:447
u_isISOControl
UBool u_isISOControl(UChar32 c)
Determines whether the specified code point is an ISO control code.
UCHAR_VARIATION_SELECTOR
@ UCHAR_VARIATION_SELECTOR
Binary property Variation_Selector (new in Unicode 4.0.1).
Definition: uchar.h:309
UCHAR_ID_CONTINUE
@ UCHAR_ID_CONTINUE
Binary property ID_Continue.
Definition: uchar.h:230
UBLOCK_ARABIC_PRESENTATION_FORMS_A
@ UBLOCK_ARABIC_PRESENTATION_FORMS_A
Definition: uchar.h:1137
UBLOCK_TAI_VIET
@ UBLOCK_TAI_VIET
Definition: uchar.h:1373
UBLOCK_SUPPLEMENTAL_MATHEMATICAL_OPERATORS
@ UBLOCK_SUPPLEMENTAL_MATHEMATICAL_OPERATORS
Definition: uchar.h:1204
U_DASH_PUNCTUATION
@ U_DASH_PUNCTUATION
Pd.
Definition: uchar.h:636
U_EXTENDED_CHAR_NAME
@ U_EXTENDED_CHAR_NAME
Standard or synthetic character name.
Definition: uchar.h:1578
UBLOCK_SIDDHAM
@ UBLOCK_SIDDHAM
Definition: uchar.h:1512
UCHAR_BIDI_CONTROL
@ UCHAR_BIDI_CONTROL
Binary property Bidi_Control.
Definition: uchar.h:183
U_STABLE
#define U_STABLE
This is used to declare a function as a stable public ICU C API.
Definition: umachine.h:109
UCHAR_PATTERN_SYNTAX
@ UCHAR_PATTERN_SYNTAX
Binary property Pattern_Syntax (new in Unicode 4.1).
Definition: uchar.h:353
U_JG_MANICHAEAN_ONE
@ U_JG_MANICHAEAN_ONE
Definition: uchar.h:1745
UCHAR_LOWERCASE
@ UCHAR_LOWERCASE
Binary property Lowercase.
Definition: uchar.h:255
u_isWhitespace
UBool u_isWhitespace(UChar32 c)
Determines if the specified code point is a whitespace character according to Java/ICU.
UBLOCK_PAHAWH_HMONG
@ UBLOCK_PAHAWH_HMONG
Definition: uchar.h:1502
UBLOCK_MONGOLIAN
@ UBLOCK_MONGOLIAN
Definition: uchar.h:984
UBLOCK_COUNTING_ROD_NUMERALS
@ UBLOCK_COUNTING_ROD_NUMERALS
Definition: uchar.h:1309
UBLOCK_OLD_NORTH_ARABIAN
@ UBLOCK_OLD_NORTH_ARABIAN
Definition: uchar.h:1496
UBLOCK_HANGUL_COMPATIBILITY_JAMO
@ UBLOCK_HANGUL_COMPATIBILITY_JAMO
Definition: uchar.h:1071
u_islower
UBool u_islower(UChar32 c)
Determines whether the specified code point has the general category "Ll" (lowercase letter).
UBLOCK_PHOENICIAN
@ UBLOCK_PHOENICIAN
Definition: uchar.h:1303
u_getIntPropertyMinValue
int32_t u_getIntPropertyMinValue(UProperty which)
Get the minimum value for an enumerated/integer/binary Unicode property.
UBLOCK_KANBUN
@ UBLOCK_KANBUN
Definition: uchar.h:1074
UBLOCK_MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS
@ UBLOCK_MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS
Definition: uchar.h:1420
UBLOCK_BAMUM
@ UBLOCK_BAMUM
Definition: uchar.h:1361
UBLOCK_ARROWS
@ UBLOCK_ARROWS
Definition: uchar.h:1014
UBLOCK_LATIN_EXTENDED_D
@ UBLOCK_LATIN_EXTENDED_D
Definition: uchar.h:1299
UBidiPairedBracketType
UBidiPairedBracketType
Bidi Paired Bracket Type constants.
Definition: uchar.h:841
UCHAR_BLOCK
@ UCHAR_BLOCK
Enumerated property Block.
Definition: uchar.h:410
U_JG_MANICHAEAN_HETH
@ U_JG_MANICHAEAN_HETH
Definition: uchar.h:1739
UBLOCK_GEOMETRIC_SHAPES
@ UBLOCK_GEOMETRIC_SHAPES
Definition: uchar.h:1038
UBLOCK_LEPCHA
@ UBLOCK_LEPCHA
Definition: uchar.h:1316
UCHAR_FULL_COMPOSITION_EXCLUSION
@ UCHAR_FULL_COMPOSITION_EXCLUSION
Binary property Full_Composition_Exclusion.
Definition: uchar.h:208
UCHAR_STRING_LIMIT
@ UCHAR_STRING_LIMIT
One more than the last constant for string Unicode properties.
Definition: uchar.h:564
u_charDigitValue
int32_t u_charDigitValue(UChar32 c)
Returns the decimal digit value of a decimal digit character.
UBLOCK_KHMER
@ UBLOCK_KHMER
Definition: uchar.h:981
U_JG_MANICHAEAN_AYIN
@ U_JG_MANICHAEAN_AYIN
Definition: uchar.h:1733
UBLOCK_CYRILLIC_SUPPLEMENTARY
@ UBLOCK_CYRILLIC_SUPPLEMENTARY
Unicode 4.0.1 renames the "Cyrillic Supplementary" block to "Cyrillic Supplement".
Definition: uchar.h:1186
UChar
uint16_t UChar
Define UChar to be UCHAR_TYPE, if that is #defined (for example, to char16_t), or wchar_t if that is ...
Definition: umachine.h:312
u_totitle
UChar32 u_totitle(UChar32 c)
The given character is mapped to its titlecase equivalent according to UnicodeData....
UCHAR_OTHER_PROPERTY_START
@ UCHAR_OTHER_PROPERTY_START
First constant for Unicode properties with unusual value types.
Definition: uchar.h:573
UCHAR_OTHER_PROPERTY_LIMIT
@ UCHAR_OTHER_PROPERTY_LIMIT
One more than the last constant for Unicode properties with unusual value types.
Definition: uchar.h:576
U_BPT_COUNT
@ U_BPT_COUNT
Definition: uchar.h:855
U_JG_MANICHAEAN_THAMEDH
@ U_JG_MANICHAEAN_THAMEDH
Definition: uchar.h:1754
UVersionInfo
uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]
The binary form of a version on ICU APIs is an array of 4 uint8_t.
Definition: uversion.h:57
U_JG_MANICHAEAN_BETH
@ U_JG_MANICHAEAN_BETH
Definition: uchar.h:1734
UBLOCK_LINEAR_A
@ UBLOCK_LINEAR_A
Definition: uchar.h:1480
UCHAR_UNIFIED_IDEOGRAPH
@ UCHAR_UNIFIED_IDEOGRAPH
Binary property Unified_Ideograph (new in Unicode 3.2).
Definition: uchar.h:280
UCHAR_SIMPLE_CASE_FOLDING
@ UCHAR_SIMPLE_CASE_FOLDING
String property Simple_Case_Folding.
Definition: uchar.h:537
UBLOCK_SUNDANESE_SUPPLEMENT
@ UBLOCK_SUNDANESE_SUPPLEMENT
Definition: uchar.h:1451
UCHAR_GRAPHEME_LINK
@ UCHAR_GRAPHEME_LINK
Binary property Grapheme_Link (new in Unicode 3.2).
Definition: uchar.h:219
u_forDigit
UChar32 u_forDigit(int32_t digit, int8_t radix)
Determines the character representation for a specific digit in the specified radix.
UCHAR_SCRIPT_EXTENSIONS
@ UCHAR_SCRIPT_EXTENSIONS
Miscellaneous property Script_Extensions (new in Unicode 6.0).
Definition: uchar.h:571
u_hasBinaryProperty
UBool u_hasBinaryProperty(UChar32 c, UProperty which)
Check a binary Unicode property for a code point.
UBLOCK_ARMENIAN
@ UBLOCK_ARMENIAN
Definition: uchar.h:903
UCHAR_LEAD_CANONICAL_COMBINING_CLASS
@ UCHAR_LEAD_CANONICAL_COMBINING_CLASS
Enumerated property Lead_Canonical_Combining_Class.
Definition: uchar.h:460
UBLOCK_GOTHIC
@ UBLOCK_GOTHIC
Definition: uchar.h:1162
u_getUnicodeVersion
void u_getUnicodeVersion(UVersionInfo versionArray)
Gets the Unicode version information.
u_isupper
UBool u_isupper(UChar32 c)
Determines whether the specified code point has the general category "Lu" (uppercase letter).
U_JG_MANICHAEAN_NUN
@ U_JG_MANICHAEAN_NUN
Definition: uchar.h:1744
UCHAR_HEX_DIGIT
@ UCHAR_HEX_DIGIT
Binary property Hex_Digit.
Definition: uchar.h:222
ULineBreak
ULineBreak
Line Break constants.
Definition: uchar.h:1863
UCHAR_XID_START
@ UCHAR_XID_START
Binary property XID_Start.
Definition: uchar.h:294
UBLOCK_SPACING_MODIFIER_LETTERS
@ UBLOCK_SPACING_MODIFIER_LETTERS
Definition: uchar.h:888
UBLOCK_HEBREW
@ UBLOCK_HEBREW
Definition: uchar.h:906
UCHAR_UNICODE_1_NAME
@ UCHAR_UNICODE_1_NAME
String property Unicode_1_Name.
Definition: uchar.h:555
U_JG_ZHAIN
@ U_JG_ZHAIN
Definition: uchar.h:1727
UBLOCK_CHAM
@ UBLOCK_CHAM
Definition: uchar.h:1332
UBLOCK_GLAGOLITIC
@ UBLOCK_GLAGOLITIC
Definition: uchar.h:1270
UBLOCK_MIAO
@ UBLOCK_MIAO
Definition: uchar.h:1445
UCHAR_BINARY_LIMIT
@ UCHAR_BINARY_LIMIT
One more than the last constant for binary Unicode properties.
Definition: uchar.h:401
UCHAR_PATTERN_WHITE_SPACE
@ UCHAR_PATTERN_WHITE_SPACE
Binary property Pattern_White_Space (new in Unicode 4.1).
Definition: uchar.h:358
UBLOCK_LISU
@ UBLOCK_LISU
Definition: uchar.h:1359
UBLOCK_CYRILLIC_SUPPLEMENT
@ UBLOCK_CYRILLIC_SUPPLEMENT
Definition: uchar.h:1181
U_JG_MANICHAEAN_ALEPH
@ U_JG_MANICHAEAN_ALEPH
Definition: uchar.h:1732
UBLOCK_MYANMAR_EXTENDED_B
@ UBLOCK_MYANMAR_EXTENDED_B
Definition: uchar.h:1492
U_JG_FARSI_YEH
@ U_JG_FARSI_YEH
Definition: uchar.h:1729
U_FORMAT_CHAR
@ U_FORMAT_CHAR
Cf.
Definition: uchar.h:630
UBLOCK_CONTROL_PICTURES
@ UBLOCK_CONTROL_PICTURES
Definition: uchar.h:1023
UBLOCK_OPTICAL_CHARACTER_RECOGNITION
@ UBLOCK_OPTICAL_CHARACTER_RECOGNITION
Definition: uchar.h:1026
UBLOCK_CJK_UNIFIED_IDEOGRAPHS
@ UBLOCK_CJK_UNIFIED_IDEOGRAPHS
Definition: uchar.h:1089
UCHAR_NAME
@ UCHAR_NAME
String property Name.
Definition: uchar.h:534
UBLOCK_CJK_RADICALS_SUPPLEMENT
@ UBLOCK_CJK_RADICALS_SUPPLEMENT
Definition: uchar.h:1050
UBLOCK_COPTIC_EPACT_NUMBERS
@ UBLOCK_COPTIC_EPACT_NUMBERS
Definition: uchar.h:1462
UJoiningGroup
UJoiningGroup
Joining Group constants.
Definition: uchar.h:1666
UBLOCK_SAMARITAN
@ UBLOCK_SAMARITAN
Definition: uchar.h:1351
UBLOCK_SUPERSCRIPTS_AND_SUBSCRIPTS
@ UBLOCK_SUPERSCRIPTS_AND_SUBSCRIPTS
Definition: uchar.h:996
UCHAR_GRAPHEME_EXTEND
@ UCHAR_GRAPHEME_EXTEND
Binary property Grapheme_Extend (new in Unicode 3.2).
Definition: uchar.h:216
UBLOCK_KHMER_SYMBOLS
@ UBLOCK_KHMER_SYMBOLS
Definition: uchar.h:1221
UCharNameChoice
UCharNameChoice
Selector constants for u_charName().
Definition: uchar.h:1566
UBLOCK_TAGALOG
@ UBLOCK_TAGALOG
Definition: uchar.h:1188
UBLOCK_CJK_SYMBOLS_AND_PUNCTUATION
@ UBLOCK_CJK_SYMBOLS_AND_PUNCTUATION
Definition: uchar.h:1059
u_getNumericValue
double u_getNumericValue(UChar32 c)
Get the numeric value for a Unicode code point as defined in the Unicode Character Database.
U_JG_ROHINGYA_YEH
@ U_JG_ROHINGYA_YEH
Definition: uchar.h:1731
U_BLOCK_SEPARATOR
@ U_BLOCK_SEPARATOR
B.
Definition: uchar.h:800
UNumericType
UNumericType
Numeric Type constants.
Definition: uchar.h:1921
UBLOCK_TAGBANWA
@ UBLOCK_TAGBANWA
Definition: uchar.h:1194
u_isIDStart
UBool u_isIDStart(UChar32 c)
Determines if the specified character is permissible as the first character in an identifier accordin...
U_JG_MANICHAEAN_KAPH
@ U_JG_MANICHAEAN_KAPH
Definition: uchar.h:1741
UBLOCK_YI_SYLLABLES
@ UBLOCK_YI_SYLLABLES
Definition: uchar.h:1092
UBLOCK_PHONETIC_EXTENSIONS
@ UBLOCK_PHONETIC_EXTENSIONS
Definition: uchar.h:1223
UBLOCK_MODI
@ UBLOCK_MODI
Definition: uchar.h:1488
UBLOCK_HANGUL_JAMO
@ UBLOCK_HANGUL_JAMO
Definition: uchar.h:963
U_SEGMENT_SEPARATOR
@ U_SEGMENT_SEPARATOR
S.
Definition: uchar.h:802
UBLOCK_LOW_SURROGATES
@ UBLOCK_LOW_SURROGATES
Definition: uchar.h:1107
UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A
@ UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A
Definition: uchar.h:1196
U_BOUNDARY_NEUTRAL
@ U_BOUNDARY_NEUTRAL
BN.
Definition: uchar.h:822
UBLOCK_SUPPLEMENTAL_ARROWS_B
@ UBLOCK_SUPPLEMENTAL_ARROWS_B
Definition: uchar.h:1200
UCHAR_CASE_SENSITIVE
@ UCHAR_CASE_SENSITIVE
Binary property Case_Sensitive.
Definition: uchar.h:298
U_RIGHT_TO_LEFT_EMBEDDING
@ U_RIGHT_TO_LEFT_EMBEDDING
RLE.
Definition: uchar.h:814
u_getFC_NFKC_Closure
int32_t u_getFC_NFKC_Closure(UChar32 c, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode)
Get the FC_NFKC_Closure property string for a character.
UBLOCK_WARANG_CITI
@ UBLOCK_WARANG_CITI
Definition: uchar.h:1520
UBLOCK_TIRHUTA
@ UBLOCK_TIRHUTA
Definition: uchar.h:1518
UBLOCK_KAITHI
@ UBLOCK_KAITHI
Definition: uchar.h:1393
u_isULowercase
UBool u_isULowercase(UChar32 c)
Check if a code point has the Lowercase Unicode property.
UBLOCK_MENDE_KIKAKUI
@ UBLOCK_MENDE_KIKAKUI
Definition: uchar.h:1486
UBLOCK_MYANMAR_EXTENDED_A
@ UBLOCK_MYANMAR_EXTENDED_A
Definition: uchar.h:1371
UBLOCK_JAVANESE
@ UBLOCK_JAVANESE
Definition: uchar.h:1369
UBLOCK_TELUGU
@ UBLOCK_TELUGU
Definition: uchar.h:936
U_OTHER_SYMBOL
@ U_OTHER_SYMBOL
So.
Definition: uchar.h:652
UCHAR_XID_CONTINUE
@ UCHAR_XID_CONTINUE
Binary property XID_Continue.
Definition: uchar.h:291
UBLOCK_OSMANYA
@ UBLOCK_OSMANYA
Definition: uchar.h:1239
UCHAR_NFC_INERT
@ UCHAR_NFC_INERT
Binary property NFC_Inert.
Definition: uchar.h:330