//#region src/constant/ascii.d.ts /** * ASCII code point. */ export declare enum AsciiCodePoint { /** * Control character: '\0' */ NUL = 0, /** * Control character: start of header */ SOH = 1, /** * Control character: start of text */ STX = 2, /** * Control character: end of text */ ETX = 3, /** * Control character: end of transmission */ EOT = 4, /** * Control character: enquiry */ ENQ = 5, /** * Control character: acknowledgement */ ACK = 6, /** * Control character: bell */ BEL = 7, /** * Control character: backspace */ BS = 8, /** * Control character: horizontal tab */ HT = 9, /** * Control character: line feed */ LF = 10, /** * Control character: vertical tab */ VT = 11, /** * Control character: form feed */ FF = 12, /** * Control character: carriage return */ CR = 13, /** * Control character: shift out */ SO = 14, /** * Control character: shift in */ SI = 15, /** * Control character: data link escape */ DLE = 16, /** * Control character: device control 1 */ DC1 = 17, /** * Control character: device control 2 */ DC2 = 18, /** * Control character: device control 3 */ DC3 = 19, /** * Control character: device control 4 */ DC4 = 20, /** * Control character: negative acknowledgement */ NAK = 21, /** * Control character: synchronous idle */ SYN = 22, /** * Control character: end of trans the block */ ETB = 23, /** * Control character: cancel */ CAN = 24, /** * Control character: end of medium */ EM = 25, /** * Control character: substitute */ SUB = 26, /** * Control character: esc */ ESC = 27, /** * Control character: file separator */ FS = 28, /** * Control character: group separator */ GS = 29, /** * Control character: record separator */ RS = 30, /** * Control character: unit separator */ US = 31, /** * Space: ' ' */ SPACE = 32, /** * Exclamation mark: '!' */ EXCLAMATION_MARK = 33, /** * Double quote / Quotation mark: '"' */ DOUBLE_QUOTE = 34, /** * Number sign: '#' */ NUMBER_SIGN = 35, /** * Dollar sign: '$' */ DOLLAR_SIGN = 36, /** * Percent sign: '%' */ PERCENT_SIGN = 37, /** * Ampersand: '&' */ AMPERSAND = 38, /** * Single quote / Apostrophe: '\'' */ SINGLE_QUOTE = 39, /** * Left parenthesis: '(' */ OPEN_PARENTHESIS = 40, /** * Right parenthesis: ')' */ CLOSE_PARENTHESIS = 41, /** * Asterisk: '*' */ ASTERISK = 42, /** * Plus sign: '+' */ PLUS_SIGN = 43, /** * Comma: ',' */ COMMA = 44, /** * Minus sign / Hyphen / Dash: '-' */ MINUS_SIGN = 45, /** * Dot: '.' */ DOT = 46, /** * Forward slash: '/' */ SLASH = 47, /** * Digit zero: '0' */ DIGIT0 = 48, /** * Digit one: '1' */ DIGIT1 = 49, /** * Digit two: '2' */ DIGIT2 = 50, /** * Digit three: '3' */ DIGIT3 = 51, /** * Digit four: '4' */ DIGIT4 = 52, /** * Digit five: '5' */ DIGIT5 = 53, /** * Digit six: '6' */ DIGIT6 = 54, /** * Digit seven: '7' */ DIGIT7 = 55, /** * Digit eight: '8' */ DIGIT8 = 56, /** * Digit nine: '9' */ DIGIT9 = 57, /** * Colon: ':' */ COLON = 58, /** * semicolon: ';' */ SEMICOLON = 59, /** * Left angle / Less than: '<' */ OPEN_ANGLE = 60, /** * Equals than: '=' */ EQUALS_SIGN = 61, /** * Right angle / Greater than: '>' */ CLOSE_ANGLE = 62, /** * Question mark: '?' */ QUESTION_MARK = 63, /** * At sign: '@' */ AT_SIGN = 64, /** * Uppercase letter 'A' */ UPPERCASE_A = 65, /** * Uppercase letter 'B' */ UPPERCASE_B = 66, /** * Uppercase letter 'C' */ UPPERCASE_C = 67, /** * Uppercase letter 'D' */ UPPERCASE_D = 68, /** * Uppercase letter 'E' */ UPPERCASE_E = 69, /** * Uppercase letter 'F' */ UPPERCASE_F = 70, /** * Uppercase letter 'G' */ UPPERCASE_G = 71, /** * Uppercase letter 'H' */ UPPERCASE_H = 72, /** * Uppercase letter 'I' */ UPPERCASE_I = 73, /** * Uppercase letter 'J' */ UPPERCASE_J = 74, /** * Uppercase letter 'K' */ UPPERCASE_K = 75, /** * Uppercase letter 'L' */ UPPERCASE_L = 76, /** * Uppercase letter 'M' */ UPPERCASE_M = 77, /** * Uppercase letter 'N' */ UPPERCASE_N = 78, /** * Uppercase letter 'O' */ UPPERCASE_O = 79, /** * Uppercase letter 'P' */ UPPERCASE_P = 80, /** * Uppercase letter 'Q' */ UPPERCASE_Q = 81, /** * Uppercase letter 'R' */ UPPERCASE_R = 82, /** * Uppercase letter 'S' */ UPPERCASE_S = 83, /** * Uppercase letter 'T' */ UPPERCASE_T = 84, /** * Uppercase letter 'U' */ UPPERCASE_U = 85, /** * Uppercase letter 'V' */ UPPERCASE_V = 86, /** * Uppercase letter 'W' */ UPPERCASE_W = 87, /** * Uppercase letter 'X' */ UPPERCASE_X = 88, /** * Uppercase letter 'Y' */ UPPERCASE_Y = 89, /** * Uppercase letter 'Z' */ UPPERCASE_Z = 90, /** * Left square bracket: '[' */ OPEN_BRACKET = 91, /** * Backslash: '\\' */ BACKSLASH = 92, /** * Right square bracket: ']' */ CLOSE_BRACKET = 93, /** * Caret: '^' */ CARET = 94, /** * Underscore: '_' */ UNDERSCORE = 95, /** * Backtick / Grave accent: '`' */ BACKTICK = 96, /** * Lowercase letter 'a' */ LOWERCASE_A = 97, /** * Lowercase letter 'b' */ LOWERCASE_B = 98, /** * Lowercase letter 'c' */ LOWERCASE_C = 99, /** * Lowercase letter 'd' */ LOWERCASE_D = 100, /** * Lowercase letter 'e' */ LOWERCASE_E = 101, /** * Lowercase letter 'f' */ LOWERCASE_F = 102, /** * Lowercase letter 'g' */ LOWERCASE_G = 103, /** * Lowercase letter 'h' */ LOWERCASE_H = 104, /** * Lowercase letter 'i' */ LOWERCASE_I = 105, /** * Lowercase letter 'j' */ LOWERCASE_J = 106, /** * Lowercase letter 'k' */ LOWERCASE_K = 107, /** * Lowercase letter 'l' */ LOWERCASE_L = 108, /** * Lowercase letter 'm' */ LOWERCASE_M = 109, /** * Lowercase letter 'n' */ LOWERCASE_N = 110, /** * Lowercase letter 'o' */ LOWERCASE_O = 111, /** * Lowercase letter 'p' */ LOWERCASE_P = 112, /** * Lowercase letter 'q' */ LOWERCASE_Q = 113, /** * Lowercase letter 'r' */ LOWERCASE_R = 114, /** * Lowercase letter 's' */ LOWERCASE_S = 115, /** * Lowercase letter 't' */ LOWERCASE_T = 116, /** * Lowercase letter 'u' */ LOWERCASE_U = 117, /** * Lowercase letter 'v' */ LOWERCASE_V = 118, /** * Lowercase letter 'w' */ LOWERCASE_W = 119, /** * Lowercase letter 'x' */ LOWERCASE_X = 120, /** * Lowercase letter 'y' */ LOWERCASE_Y = 121, /** * Lowercase letter 'z' */ LOWERCASE_Z = 122, /** * Left curly brace: '{' */ OPEN_BRACE = 123, /** * Vertical bar: '|' */ VERTICAL_SLASH = 124, /** * Right curly brace: '}' */ CLOSE_BRACE = 125, /** * Tilde: `~` */ TILDE = 126, /** * Control character: delete */ DELETE = 127 } //#endregion //#region src/constant/entity.d.ts export declare const entityReferences: { key: number[]; value: string; }[]; //#endregion //#region src/constant/folding-case.d.ts export declare const foldingCaseCodeMap: Record; //#endregion //#region src/constant/unicode/pc.d.ts /** * Unicode Characters in the 'Punctuation, Connector' Category * @see https://www.fileformat.info/info/unicode/category/Pc/list.htm */ export declare enum UnicodePcCodePoint { /** * @see https://www.fileformat.info/info/unicode/char/005f/index.htm */ LOW_LINE = 95, /** * @see https://www.fileformat.info/info/unicode/char/203f/index.htm */ UNDERTIE = 8255, /** * @see https://www.fileformat.info/info/unicode/char/2040/index.htm */ CHARACTER_TIE = 8256, /** * @see https://www.fileformat.info/info/unicode/char/2054/index.htm */ INVERTED_UNDERTIE = 8276, /** * @see https://www.fileformat.info/info/unicode/char/fe33/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LOW_LINE = 65075, /** * @see https://www.fileformat.info/info/unicode/char/fe34/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_WAVY_LOW_LINE = 65076, /** * @see https://www.fileformat.info/info/unicode/char/fe4d/index.htm */ DASHED_LOW_LINE = 65101, /** * @see https://www.fileformat.info/info/unicode/char/fe4e/index.htm */ CENTRELINE_LOW_LINE = 65102, /** * @see https://www.fileformat.info/info/unicode/char/fe4f/index.htm */ WAVY_LOW_LINE = 65103, /** * @see https://www.fileformat.info/info/unicode/char/ff3f/index.htm */ FULLWIDTH_LOW_LINE = 65343 } //#endregion //#region src/constant/unicode/pd.d.ts /** * Unicode Characters in the 'Punctuation, Dash' Category * @see https://www.fileformat.info/info/unicode/category/Pd/list.htm */ export declare enum UnicodePdCodePoint { /** * @see https://www.fileformat.info/info/unicode/char/002d/index.htm */ HYPHEN_MINUS = 45, /** * @see https://www.fileformat.info/info/unicode/char/058a/index.htm */ ARMENIAN_HYPHEN = 1418, /** * @see https://www.fileformat.info/info/unicode/char/05be/index.htm */ HEBREW_PUNCTUATION_MAQAF = 1470, /** * @see https://www.fileformat.info/info/unicode/char/1400/index.htm */ CANADIAN_SYLLABICS_HYPHEN = 5120, /** * @see https://www.fileformat.info/info/unicode/char/1806/index.htm */ MONGOLIAN_TODO_SOFT_HYPHEN = 6150, /** * @see https://www.fileformat.info/info/unicode/char/2010/index.htm */ HYPHEN = 8208, /** * @see https://www.fileformat.info/info/unicode/char/2011/index.htm */ NON_BREAKING_HYPHEN = 8209, /** * @see https://www.fileformat.info/info/unicode/char/2012/index.htm */ FIGURE_DASH = 8210, /** * @see https://www.fileformat.info/info/unicode/char/2013/index.htm */ EN_DASH = 8211, /** * @see https://www.fileformat.info/info/unicode/char/2014/index.htm */ EM_DASH = 8212, /** * @see https://www.fileformat.info/info/unicode/char/2015/index.htm */ HORIZONTAL_BAR = 8213, /** * @see https://www.fileformat.info/info/unicode/char/2e17/index.htm */ DOUBLE_OBLIQUE_HYPHEN = 11799, /** * @see https://www.fileformat.info/info/unicode/char/2e1a/index.htm */ HYPHEN_WITH_DIAERESIS = 11802, /** * @see https://www.fileformat.info/info/unicode/char/2e3a/index.htm */ TWO_EM_DASH = 11834, /** * @see https://www.fileformat.info/info/unicode/char/2e3b/index.htm */ THREE_EM_DASH = 11835, /** * @see https://www.fileformat.info/info/unicode/char/2e40/index.htm */ DOUBLE_HYPHEN = 11840, /** * @see https://www.fileformat.info/info/unicode/char/2e5d/index.htm */ OBLIQUE_HYPHEN = 11869, /** * @see https://www.fileformat.info/info/unicode/char/301c/index.htm */ WAVE_DASH = 12316, /** * @see https://www.fileformat.info/info/unicode/char/3030/index.htm */ WAVY_DASH = 12336, /** * @see https://www.fileformat.info/info/unicode/char/30a0/index.htm */ KATAKANA_HIRAGANA_DOUBLE_HYPHEN = 12448, /** * @see https://www.fileformat.info/info/unicode/char/fe31/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_EM_DASH = 65073, /** * @see https://www.fileformat.info/info/unicode/char/fe32/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_EN_DASH = 65074, /** * @see https://www.fileformat.info/info/unicode/char/fe58/index.htm */ SMALL_EM_DASH = 65112, /** * @see https://www.fileformat.info/info/unicode/char/fe63/index.htm */ SMALL_HYPHEN_MINUS = 65123, /** * @see https://www.fileformat.info/info/unicode/char/ff0d/index.htm */ FULLWIDTH_HYPHEN_MINUS = 65293, /** * @see https://www.fileformat.info/info/unicode/char/10d6e/index.htm */ GARAY_HYPHEN = 68974, /** * @see https://www.fileformat.info/info/unicode/char/10ead/index.htm */ YEZIDI_HYPHENATION_MARK = 69293 } //#endregion //#region src/constant/unicode/pe.d.ts /** * Unicode Characters in the 'Punctuation, Close' Category * @see https://www.fileformat.info/info/unicode/category/Pe/list.htm */ export declare enum UnicodePeCodePoint { /** * @see https://www.fileformat.info/info/unicode/char/0029/index.htm */ RIGHT_PARENTHESIS = 41, /** * @see https://www.fileformat.info/info/unicode/char/005d/index.htm */ RIGHT_SQUARE_BRACKET = 93, /** * @see https://www.fileformat.info/info/unicode/char/007d/index.htm */ RIGHT_CURLY_BRACKET = 125, /** * @see https://www.fileformat.info/info/unicode/char/0f3b/index.htm */ TIBETAN_MARK_GUG_RTAGS_GYAS = 3899, /** * @see https://www.fileformat.info/info/unicode/char/0f3d/index.htm */ TIBETAN_MARK_ANG_KHANG_GYAS = 3901, /** * @see https://www.fileformat.info/info/unicode/char/169c/index.htm */ OGHAM_REVERSED_FEATHER_MARK = 5788, /** * @see https://www.fileformat.info/info/unicode/char/2046/index.htm */ RIGHT_SQUARE_BRACKET_WITH_QUILL = 8262, /** * @see https://www.fileformat.info/info/unicode/char/207e/index.htm */ SUPERSCRIPT_RIGHT_PARENTHESIS = 8318, /** * @see https://www.fileformat.info/info/unicode/char/208e/index.htm */ SUBSCRIPT_RIGHT_PARENTHESIS = 8334, /** * @see https://www.fileformat.info/info/unicode/char/2309/index.htm */ RIGHT_CEILING = 8969, /** * @see https://www.fileformat.info/info/unicode/char/230b/index.htm */ RIGHT_FLOOR = 8971, /** * @see https://www.fileformat.info/info/unicode/char/232a/index.htm */ RIGHT_POINTING_ANGLE_BRACKET = 9002, /** * @see https://www.fileformat.info/info/unicode/char/2769/index.htm */ MEDIUM_RIGHT_PARENTHESIS_ORNAMENT = 10089, /** * @see https://www.fileformat.info/info/unicode/char/276b/index.htm */ MEDIUM_FLATTENED_RIGHT_PARENTHESIS_ORNAMENT = 10091, /** * @see https://www.fileformat.info/info/unicode/char/276d/index.htm */ MEDIUM_RIGHT_POINTING_ANGLE_BRACKET_ORNAMENT = 10093, /** * @see https://www.fileformat.info/info/unicode/char/276f/index.htm */ HEAVY_RIGHT_POINTING_ANGLE_QUOTATION_MARK_ORNAMENT = 10095, /** * @see https://www.fileformat.info/info/unicode/char/2771/index.htm */ HEAVY_RIGHT_POINTING_ANGLE_BRACKET_ORNAMENT = 10097, /** * @see https://www.fileformat.info/info/unicode/char/2773/index.htm */ LIGHT_RIGHT_TORTOISE_SHELL_BRACKET_ORNAMENT = 10099, /** * @see https://www.fileformat.info/info/unicode/char/2775/index.htm */ MEDIUM_RIGHT_CURLY_BRACKET_ORNAMENT = 10101, /** * @see https://www.fileformat.info/info/unicode/char/27c6/index.htm */ RIGHT_S_SHAPED_BAG_DELIMITER = 10182, /** * @see https://www.fileformat.info/info/unicode/char/27e7/index.htm */ MATHEMATICAL_RIGHT_WHITE_SQUARE_BRACKET = 10215, /** * @see https://www.fileformat.info/info/unicode/char/27e9/index.htm */ MATHEMATICAL_RIGHT_ANGLE_BRACKET = 10217, /** * @see https://www.fileformat.info/info/unicode/char/27eb/index.htm */ MATHEMATICAL_RIGHT_DOUBLE_ANGLE_BRACKET = 10219, /** * @see https://www.fileformat.info/info/unicode/char/27ed/index.htm */ MATHEMATICAL_RIGHT_WHITE_TORTOISE_SHELL_BRACKET = 10221, /** * @see https://www.fileformat.info/info/unicode/char/27ef/index.htm */ MATHEMATICAL_RIGHT_FLATTENED_PARENTHESIS = 10223, /** * @see https://www.fileformat.info/info/unicode/char/2984/index.htm */ RIGHT_WHITE_CURLY_BRACKET = 10628, /** * @see https://www.fileformat.info/info/unicode/char/2986/index.htm */ RIGHT_WHITE_PARENTHESIS = 10630, /** * @see https://www.fileformat.info/info/unicode/char/2988/index.htm */ Z_NOTATION_RIGHT_IMAGE_BRACKET = 10632, /** * @see https://www.fileformat.info/info/unicode/char/298a/index.htm */ Z_NOTATION_RIGHT_BINDING_BRACKET = 10634, /** * @see https://www.fileformat.info/info/unicode/char/298c/index.htm */ RIGHT_SQUARE_BRACKET_WITH_UNDERBAR = 10636, /** * @see https://www.fileformat.info/info/unicode/char/298e/index.htm */ RIGHT_SQUARE_BRACKET_WITH_TICK_IN_BOTTOM_CORNER = 10638, /** * @see https://www.fileformat.info/info/unicode/char/2990/index.htm */ RIGHT_SQUARE_BRACKET_WITH_TICK_IN_TOP_CORNER = 10640, /** * @see https://www.fileformat.info/info/unicode/char/2992/index.htm */ RIGHT_ANGLE_BRACKET_WITH_DOT = 10642, /** * @see https://www.fileformat.info/info/unicode/char/2994/index.htm */ RIGHT_ARC_GREATER_THAN_BRACKET = 10644, /** * @see https://www.fileformat.info/info/unicode/char/2996/index.htm */ DOUBLE_RIGHT_ARC_LESS_THAN_BRACKET = 10646, /** * @see https://www.fileformat.info/info/unicode/char/2998/index.htm */ RIGHT_BLACK_TORTOISE_SHELL_BRACKET = 10648, /** * @see https://www.fileformat.info/info/unicode/char/29d9/index.htm */ RIGHT_WIGGLY_FENCE = 10713, /** * @see https://www.fileformat.info/info/unicode/char/29db/index.htm */ RIGHT_DOUBLE_WIGGLY_FENCE = 10715, /** * @see https://www.fileformat.info/info/unicode/char/29fd/index.htm */ RIGHT_POINTING_CURVED_ANGLE_BRACKET = 10749, /** * @see https://www.fileformat.info/info/unicode/char/2e23/index.htm */ TOP_RIGHT_HALF_BRACKET = 11811, /** * @see https://www.fileformat.info/info/unicode/char/2e25/index.htm */ BOTTOM_RIGHT_HALF_BRACKET = 11813, /** * @see https://www.fileformat.info/info/unicode/char/2e27/index.htm */ RIGHT_SIDEWAYS_U_BRACKET = 11815, /** * @see https://www.fileformat.info/info/unicode/char/2e29/index.htm */ RIGHT_DOUBLE_PARENTHESIS = 11817, /** * @see https://www.fileformat.info/info/unicode/char/2e56/index.htm */ RIGHT_SQUARE_BRACKET_WITH_STROKE = 11862, /** * @see https://www.fileformat.info/info/unicode/char/2e58/index.htm */ RIGHT_SQUARE_BRACKET_WITH_DOUBLE_STROKE = 11864, /** * @see https://www.fileformat.info/info/unicode/char/2e5a/index.htm */ TOP_HALF_RIGHT_PARENTHESIS = 11866, /** * @see https://www.fileformat.info/info/unicode/char/2e5c/index.htm */ BOTTOM_HALF_RIGHT_PARENTHESIS = 11868, /** * @see https://www.fileformat.info/info/unicode/char/3009/index.htm */ RIGHT_ANGLE_BRACKET = 12297, /** * @see https://www.fileformat.info/info/unicode/char/300b/index.htm */ RIGHT_DOUBLE_ANGLE_BRACKET = 12299, /** * @see https://www.fileformat.info/info/unicode/char/300d/index.htm */ RIGHT_CORNER_BRACKET = 12301, /** * @see https://www.fileformat.info/info/unicode/char/300f/index.htm */ RIGHT_WHITE_CORNER_BRACKET = 12303, /** * @see https://www.fileformat.info/info/unicode/char/3011/index.htm */ RIGHT_BLACK_LENTICULAR_BRACKET = 12305, /** * @see https://www.fileformat.info/info/unicode/char/3015/index.htm */ RIGHT_TORTOISE_SHELL_BRACKET = 12309, /** * @see https://www.fileformat.info/info/unicode/char/3017/index.htm */ RIGHT_WHITE_LENTICULAR_BRACKET = 12311, /** * @see https://www.fileformat.info/info/unicode/char/3019/index.htm */ RIGHT_WHITE_TORTOISE_SHELL_BRACKET = 12313, /** * @see https://www.fileformat.info/info/unicode/char/301b/index.htm */ RIGHT_WHITE_SQUARE_BRACKET = 12315, /** * @see https://www.fileformat.info/info/unicode/char/301e/index.htm */ DOUBLE_PRIME_QUOTATION_MARK = 12318, /** * @see https://www.fileformat.info/info/unicode/char/301f/index.htm */ LOW_DOUBLE_PRIME_QUOTATION_MARK = 12319, /** * @see https://www.fileformat.info/info/unicode/char/fd3e/index.htm */ ORNATE_LEFT_PARENTHESIS = 64830, /** * @see https://www.fileformat.info/info/unicode/char/fe18/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_WHITE_LENTICULAR_BRAKCET = 65048, /** * @see https://www.fileformat.info/info/unicode/char/fe36/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_PARENTHESIS = 65078, /** * @see https://www.fileformat.info/info/unicode/char/fe38/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_CURLY_BRACKET = 65080, /** * @see https://www.fileformat.info/info/unicode/char/fe3a/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_TORTOISE_SHELL_BRACKET = 65082, /** * @see https://www.fileformat.info/info/unicode/char/fe3c/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_BLACK_LENTICULAR_BRACKET = 65084, /** * @see https://www.fileformat.info/info/unicode/char/fe3e/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_DOUBLE_ANGLE_BRACKET = 65086, /** * @see https://www.fileformat.info/info/unicode/char/fe40/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_ANGLE_BRACKET = 65088, /** * @see https://www.fileformat.info/info/unicode/char/fe42/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_CORNER_BRACKET = 65090, /** * @see https://www.fileformat.info/info/unicode/char/fe44/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_WHITE_CORNER_BRACKET = 65092, /** * @see https://www.fileformat.info/info/unicode/char/fe48/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_RIGHT_SQUARE_BRACKET = 65096, /** * @see https://www.fileformat.info/info/unicode/char/fe5a/index.htm */ SMALL_RIGHT_PARENTHESIS = 65114, /** * @see https://www.fileformat.info/info/unicode/char/fe5c/index.htm */ SMALL_RIGHT_CURLY_BRACKET = 65116, /** * @see https://www.fileformat.info/info/unicode/char/fe5e/index.htm */ SMALL_RIGHT_TORTOISE_SHELL_BRACKET = 65118, /** * @see https://www.fileformat.info/info/unicode/char/ff09/index.htm */ FULLWIDTH_RIGHT_PARENTHESIS = 65289, /** * @see https://www.fileformat.info/info/unicode/char/ff3d/index.htm */ FULLWIDTH_RIGHT_SQUARE_BRACKET = 65341, /** * @see https://www.fileformat.info/info/unicode/char/ff5d/index.htm */ FULLWIDTH_RIGHT_CURLY_BRACKET = 65373, /** * @see https://www.fileformat.info/info/unicode/char/ff60/index.htm */ FULLWIDTH_RIGHT_WHITE_PARENTHESIS = 65376, /** * @see https://www.fileformat.info/info/unicode/char/ff63/index.htm */ HALFWIDTH_RIGHT_CORNER_BRACKET = 65379 } //#endregion //#region src/constant/unicode/pf.d.ts /** * Unicode Characters in the 'Punctuation, Final quote * (may behave like Ps or Pe depending on usage)' Category * @see https://www.fileformat.info/info/unicode/category/Pf/list.htm */ export declare enum UnicodePfCodePoint { /** * @see https://www.fileformat.info/info/unicode/char/00bb/index.htm */ RIGHT_POINTING_DOUBLE_ANGLE_QUOTATION_MARK = 187, /** * @see https://www.fileformat.info/info/unicode/char/2019/index.htm */ RIGHT_SINGLE_QUOTATION_MARK = 8217, /** * @see https://www.fileformat.info/info/unicode/char/201d/index.htm */ RIGHT_DOUBLE_QUOTATION_MARK = 8221, /** * @see https://www.fileformat.info/info/unicode/char/203a/index.htm */ SINGLE_RIGHT_POINTING_ANGLE_QUOTATION_MARK = 8250, /** * @see https://www.fileformat.info/info/unicode/char/2e03/index.htm */ RIGHT_SUBSTITUTION_BRACKET = 11779, /** * @see https://www.fileformat.info/info/unicode/char/2e05/index.htm */ RIGHT_DOTTED_SUBSTITUTION_BRACKET = 11781, /** * @see https://www.fileformat.info/info/unicode/char/2e0a/index.htm */ RIGHT_TRANSPOSITION_BRACKET = 11786, /** * @see https://www.fileformat.info/info/unicode/char/2e0d/index.htm */ RIGHT_RAISED_OMISSION_BRACKET = 11789, /** * @see https://www.fileformat.info/info/unicode/char/2e1d/index.htm */ RIGHT_LOW_PARAPHRASE_BRACKET = 11805, /** * @see https://www.fileformat.info/info/unicode/char/2e21/index.htm */ RIGHT_VERTICAL_BAR_WITH_QUILL = 11809 } //#endregion //#region src/constant/unicode/pi.d.ts /** * Unicode Characters in the 'Punctuation, Initial quote (may behave like * Ps or Pe depending on usage)' Category * @see https://www.fileformat.info/info/unicode/category/Pi/list.htm */ export declare enum UnicodePiCodePoint { /** * @see https://www.fileformat.info/info/unicode/char/00ab/index.htm */ LEFT_POINTING_DOUBLE_ANGLE_QUOTATION_MARK = 171, /** * @see https://www.fileformat.info/info/unicode/char/2018/index.htm */ LEFT_SINGLE_QUOTATION_MARK = 8216, /** * @see https://www.fileformat.info/info/unicode/char/201b/index.htm */ SINGLE_HIGH_REVERSED_9_QUOTATION_MARK = 8219, /** * @see https://www.fileformat.info/info/unicode/char/201c/index.htm */ LEFT_DOUBLE_QUOTATION_MARK = 8220, /** * @see https://www.fileformat.info/info/unicode/char/201f/index.htm */ DOUBLE_HIGH_REVERSED_9_QUOTATION_MARK = 8223, /** * @see https://www.fileformat.info/info/unicode/char/2039/index.htm */ SINGLE_LEFT_POINTING_ANGLE_QUOTATION_MARK = 8249, /** * @see https://www.fileformat.info/info/unicode/char/2e02/index.htm */ LEFT_SUBSTITUTION_BRACKET = 11778, /** * @see https://www.fileformat.info/info/unicode/char/2e04/index.htm */ LEFT_DOTTED_SUBSTITUTION_BRACKET = 11780, /** * @see https://www.fileformat.info/info/unicode/char/2e09/index.htm */ LEFT_TRANSPOSITION_BRACKET = 11785, /** * @see https://www.fileformat.info/info/unicode/char/2e0c/index.htm */ LEFT_RAISED_OMISSION_BRACKET = 11788, /** * @see https://www.fileformat.info/info/unicode/char/2e1c/index.htm */ LEFT_LOW_PARAPHRASE_BRACKET = 11804, /** * @see https://www.fileformat.info/info/unicode/char/2e20/index.htm */ LEFT_VERTICAL_BAR_WITH_QUILL = 11808 } //#endregion //#region src/constant/unicode/po.d.ts /** * Unicode Characters in the 'Punctuation, Other' Category * @see https://www.fileformat.info/info/unicode/category/Po/list.htm */ export declare enum UnicodePoCodePoint { /** * @see https://www.fileformat.info/info/unicode/char/0021/index.htm */ EXCLAMATION_MARK = 33, /** * @see https://www.fileformat.info/info/unicode/char/0022/index.htm */ QUOTATION_MARK = 34, /** * @see https://www.fileformat.info/info/unicode/char/0023/index.htm */ NUMBER_SIGN = 35, /** * @see https://www.fileformat.info/info/unicode/char/0025/index.htm */ PERCENT_SIGN = 37, /** * @see https://www.fileformat.info/info/unicode/char/0026/index.htm */ AMPERSAND = 38, /** * @see https://www.fileformat.info/info/unicode/char/0027/index.htm */ APOSTROPHE = 39, /** * @see https://www.fileformat.info/info/unicode/char/002a/index.htm */ ASTERISK = 42, /** * @see https://www.fileformat.info/info/unicode/char/002c/index.htm */ COMMA = 44, /** * @see https://www.fileformat.info/info/unicode/char/002e/index.htm */ FULL_STOP = 46, /** * @see https://www.fileformat.info/info/unicode/char/002f/index.htm */ SOLIDUS = 47, /** * @see https://www.fileformat.info/info/unicode/char/003a/index.htm */ COLON = 58, /** * @see https://www.fileformat.info/info/unicode/char/003b/index.htm */ SEMICOLON = 59, /** * @see https://www.fileformat.info/info/unicode/char/003f/index.htm */ QUESTION_MARK = 63, /** * @see https://www.fileformat.info/info/unicode/char/0040/index.htm */ COMMERCIAL_AT = 64, /** * @see https://www.fileformat.info/info/unicode/char/005c/index.htm */ REVERSE_SOLIDUS = 92, /** * @see https://www.fileformat.info/info/unicode/char/00a1/index.htm */ INVERTED_EXCLAMATION_MARK = 161, /** * @see https://www.fileformat.info/info/unicode/char/00a7/index.htm */ SECTION_SIGN = 167, /** * @see https://www.fileformat.info/info/unicode/char/00b6/index.htm */ PILCROW_SIGN = 182, /** * @see https://www.fileformat.info/info/unicode/char/00b7/index.htm */ MIDDLE_DOT = 183, /** * @see https://www.fileformat.info/info/unicode/char/00bf/index.htm */ INVERTED_QUESTION_MARK = 191, /** * @see https://www.fileformat.info/info/unicode/char/037e/index.htm */ GREEK_QUESTION_MARK = 894, /** * @see https://www.fileformat.info/info/unicode/char/0387/index.htm */ GREEK_ANO_TELEIA = 903, /** * @see https://www.fileformat.info/info/unicode/char/055a/index.htm */ ARMENIAN_APOSTROPHE = 1370, /** * @see https://www.fileformat.info/info/unicode/char/055b/index.htm */ ARMENIAN_EMPHASIS_MARK = 1371, /** * @see https://www.fileformat.info/info/unicode/char/055c/index.htm */ ARMENIAN_EXCLAMATION_MARK = 1372, /** * @see https://www.fileformat.info/info/unicode/char/055d/index.htm */ ARMENIAN_COMMA = 1373, /** * @see https://www.fileformat.info/info/unicode/char/055e/index.htm */ ARMENIAN_QUESTION_MARK = 1374, /** * @see https://www.fileformat.info/info/unicode/char/055f/index.htm */ ARMENIAN_ABBREVIATION_MARK = 1375, /** * @see https://www.fileformat.info/info/unicode/char/0589/index.htm */ ARMENIAN_FULL_STOP = 1417, /** * @see https://www.fileformat.info/info/unicode/char/05c0/index.htm */ HEBREW_PUNCTUATION_PASEQ = 1472, /** * @see https://www.fileformat.info/info/unicode/char/05c3/index.htm */ HEBREW_PUNCTUATION_SOF_PASUQ = 1475, /** * @see https://www.fileformat.info/info/unicode/char/05c6/index.htm */ HEBREW_PUNCTUATION_NUN_HAFUKHA = 1478, /** * @see https://www.fileformat.info/info/unicode/char/05f3/index.htm */ HEBREW_PUNCTUATION_GERESH = 1523, /** * @see https://www.fileformat.info/info/unicode/char/05f4/index.htm */ HEBREW_PUNCTUATION_GERSHAYIM = 1524, /** * @see https://www.fileformat.info/info/unicode/char/0609/index.htm */ ARABIC_INDIC_PER_MILLE_SIGN = 1545, /** * @see https://www.fileformat.info/info/unicode/char/060a/index.htm */ ARABIC_INDIC_PER_TEN_THOUSAND_SIGN = 1546, /** * @see https://www.fileformat.info/info/unicode/char/060c/index.htm */ ARABIC_COMMA = 1548, /** * @see https://www.fileformat.info/info/unicode/char/060d/index.htm */ ARABIC_DATE_SEPARATOR = 1549, /** * @see https://www.fileformat.info/info/unicode/char/061b/index.htm */ ARABIC_SEMICOLON = 1563, /** * @see https://www.fileformat.info/info/unicode/char/061d/index.htm */ ARABIC_END_OF_TEXT_MARK = 1565, /** * @see https://www.fileformat.info/info/unicode/char/061e/index.htm */ ARABIC_TRIPLE_DOT_PUNCTUATION_MARK = 1566, /** * @see https://www.fileformat.info/info/unicode/char/061f/index.htm */ ARABIC_QUESTION_MARK = 1567, /** * @see https://www.fileformat.info/info/unicode/char/066a/index.htm */ ARABIC_PERCENT_SIGN = 1642, /** * @see https://www.fileformat.info/info/unicode/char/066b/index.htm */ ARABIC_DECIMAL_SEPARATOR = 1643, /** * @see https://www.fileformat.info/info/unicode/char/066c/index.htm */ ARABIC_THOUSANDS_SEPARATOR = 1644, /** * @see https://www.fileformat.info/info/unicode/char/066d/index.htm */ ARABIC_FIVE_POINTED_STAR = 1645, /** * @see https://www.fileformat.info/info/unicode/char/06d4/index.htm */ ARABIC_FULL_STOP = 1748, /** * @see https://www.fileformat.info/info/unicode/char/0700/index.htm */ SYRIAC_END_OF_PARAGRAPH = 1792, /** * @see https://www.fileformat.info/info/unicode/char/0701/index.htm */ SYRIAC_SUPRALINEAR_FULL_STOP = 1793, /** * @see https://www.fileformat.info/info/unicode/char/0702/index.htm */ SYRIAC_SUBLINEAR_FULL_STOP = 1794, /** * @see https://www.fileformat.info/info/unicode/char/0703/index.htm */ SYRIAC_SUPRALINEAR_COLON = 1795, /** * @see https://www.fileformat.info/info/unicode/char/0704/index.htm */ SYRIAC_SUBLINEAR_COLON = 1796, /** * @see https://www.fileformat.info/info/unicode/char/0705/index.htm */ SYRIAC_HORIZONTAL_COLON = 1797, /** * @see https://www.fileformat.info/info/unicode/char/0706/index.htm */ SYRIAC_COLON_SKEWED_LEFT = 1798, /** * @see https://www.fileformat.info/info/unicode/char/0707/index.htm */ SYRIAC_COLON_SKEWED_RIGHT = 1799, /** * @see https://www.fileformat.info/info/unicode/char/0708/index.htm */ SYRIAC_SUPRALINEAR_COLON_SKEWED_LEFT = 1800, /** * @see https://www.fileformat.info/info/unicode/char/0709/index.htm */ SYRIAC_SUBLINEAR_COLON_SKEWED_RIGHT = 1801, /** * @see https://www.fileformat.info/info/unicode/char/070a/index.htm */ SYRIAC_CONTRACTION = 1802, /** * @see https://www.fileformat.info/info/unicode/char/070b/index.htm */ SYRIAC_HARKLEAN_OBELUS = 1803, /** * @see https://www.fileformat.info/info/unicode/char/070c/index.htm */ SYRIAC_HARKLEAN_METOBELUS = 1804, /** * @see https://www.fileformat.info/info/unicode/char/070d/index.htm */ SYRIAC_HARKLEAN_ASTERISCUS = 1805, /** * @see https://www.fileformat.info/info/unicode/char/07f7/index.htm */ NKO_SYMBOL_GBAKURUNEN = 2039, /** * @see https://www.fileformat.info/info/unicode/char/07f8/index.htm */ NKO_COMMA = 2040, /** * @see https://www.fileformat.info/info/unicode/char/07f9/index.htm */ NKO_EXCLAMATION_MARK = 2041, /** * @see https://www.fileformat.info/info/unicode/char/0830/index.htm */ SAMARITAN_PUNCTUATION_NEQUDAA = 2096, /** * @see https://www.fileformat.info/info/unicode/char/0831/index.htm */ SAMARITAN_PUNCTUATION_AFSAAQ = 2097, /** * @see https://www.fileformat.info/info/unicode/char/0832/index.htm */ SAMARITAN_PUNCTUATION_ANGED = 2098, /** * @see https://www.fileformat.info/info/unicode/char/0833/index.htm */ SAMARITAN_PUNCTUATION_BAU = 2099, /** * @see https://www.fileformat.info/info/unicode/char/0834/index.htm */ SAMARITAN_PUNCTUATION_ATMAAU = 2100, /** * @see https://www.fileformat.info/info/unicode/char/0835/index.htm */ SAMARITAN_PUNCTUATION_SHIYYAALAA = 2101, /** * @see https://www.fileformat.info/info/unicode/char/0836/index.htm */ SAMARITAN_ABBREVIATION_MARK = 2102, /** * @see https://www.fileformat.info/info/unicode/char/0837/index.htm */ SAMARITAN_PUNCTUATION_MELODIC_QITSA = 2103, /** * @see https://www.fileformat.info/info/unicode/char/0838/index.htm */ SAMARITAN_PUNCTUATION_ZIQAA = 2104, /** * @see https://www.fileformat.info/info/unicode/char/0839/index.htm */ SAMARITAN_PUNCTUATION_QITSA = 2105, /** * @see https://www.fileformat.info/info/unicode/char/083a/index.htm */ SAMARITAN_PUNCTUATION_ZAEF = 2106, /** * @see https://www.fileformat.info/info/unicode/char/083b/index.htm */ SAMARITAN_PUNCTUATION_TURU = 2107, /** * @see https://www.fileformat.info/info/unicode/char/083c/index.htm */ SAMARITAN_PUNCTUATION_ARKAANU = 2108, /** * @see https://www.fileformat.info/info/unicode/char/083d/index.htm */ SAMARITAN_PUNCTUATION_SOF_MASHFAAT = 2109, /** * @see https://www.fileformat.info/info/unicode/char/083e/index.htm */ SAMARITAN_PUNCTUATION_ANNAAU = 2110, /** * @see https://www.fileformat.info/info/unicode/char/085e/index.htm */ MANDAIC_PUNCTUATION = 2142, /** * @see https://www.fileformat.info/info/unicode/char/0964/index.htm */ DEVANAGARI_DANDA = 2404, /** * @see https://www.fileformat.info/info/unicode/char/0965/index.htm */ DEVANAGARI_DOUBLE_DANDA = 2405, /** * @see https://www.fileformat.info/info/unicode/char/0970/index.htm */ DEVANAGARI_ABBREVIATION_SIGN = 2416, /** * @see https://www.fileformat.info/info/unicode/char/09fd/index.htm */ BENGALI_ABBREVIATION_SIGN = 2557, /** * @see https://www.fileformat.info/info/unicode/char/0a76/index.htm */ GURMUKHI_ABBREVIATION_SIGN = 2678, /** * @see https://www.fileformat.info/info/unicode/char/0af0/index.htm */ GUJARATI_ABBREVIATION_SIGN = 2800, /** * @see https://www.fileformat.info/info/unicode/char/0c77/index.htm */ TELUGU_SIGN_SIDDHAM = 3191, /** * @see https://www.fileformat.info/info/unicode/char/0c84/index.htm */ KANNADA_SIGN_SIDDHAM = 3204, /** * @see https://www.fileformat.info/info/unicode/char/0df4/index.htm */ SINHALA_PUNCTUATION_KUNDDALIYA = 3572, /** * @see https://www.fileformat.info/info/unicode/char/0e4f/index.htm */ THAI_CHARACTER_FONGMAN = 3663, /** * @see https://www.fileformat.info/info/unicode/char/0e5a/index.htm */ THAI_CHARACTER_ANGKHANKHU = 3674, /** * @see https://www.fileformat.info/info/unicode/char/0e5b/index.htm */ THAI_CHARACTER_KHOMUT = 3675, /** * @see https://www.fileformat.info/info/unicode/char/0f04/index.htm */ TIBETAN_MARK_INITIAL_YIG_MGO_MDUN_MA = 3844, /** * @see https://www.fileformat.info/info/unicode/char/0f05/index.htm */ TIBETAN_MARK_CLOSING_YIG_MGO_SGAB_MA = 3845, /** * @see https://www.fileformat.info/info/unicode/char/0f06/index.htm */ TIBETAN_MARK_CARET_YIG_MGO_PHUR_SHAD_MA = 3846, /** * @see https://www.fileformat.info/info/unicode/char/0f07/index.htm */ TIBETAN_MARK_YIG_MGO_TSHEG_SHAD_MA = 3847, /** * @see https://www.fileformat.info/info/unicode/char/0f08/index.htm */ TIBETAN_MARK_SBRUL_SHAD = 3848, /** * @see https://www.fileformat.info/info/unicode/char/0f09/index.htm */ TIBETAN_MARK_BSKUR_YIG_MGO = 3849, /** * @see https://www.fileformat.info/info/unicode/char/0f0a/index.htm */ TIBETAN_MARK_BKA__SHOG_YIG_MGO = 3850, /** * @see https://www.fileformat.info/info/unicode/char/0f0b/index.htm */ TIBETAN_MARK_INTERSYLLABIC_TSHEG = 3851, /** * @see https://www.fileformat.info/info/unicode/char/0f0c/index.htm */ TIBETAN_MARK_DELIMITER_TSHEG_BSTAR = 3852, /** * @see https://www.fileformat.info/info/unicode/char/0f0d/index.htm */ TIBETAN_MARK_SHAD = 3853, /** * @see https://www.fileformat.info/info/unicode/char/0f0e/index.htm */ TIBETAN_MARK_NYIS_SHAD = 3854, /** * @see https://www.fileformat.info/info/unicode/char/0f0f/index.htm */ TIBETAN_MARK_TSHEG_SHAD = 3855, /** * @see https://www.fileformat.info/info/unicode/char/0f10/index.htm */ TIBETAN_MARK_NYIS_TSHEG_SHAD = 3856, /** * @see https://www.fileformat.info/info/unicode/char/0f11/index.htm */ TIBETAN_MARK_RIN_CHEN_SPUNGS_SHAD = 3857, /** * @see https://www.fileformat.info/info/unicode/char/0f12/index.htm */ TIBETAN_MARK_RGYA_GRAM_SHAD = 3858, /** * @see https://www.fileformat.info/info/unicode/char/0f14/index.htm */ TIBETAN_MARK_GTER_TSHEG = 3860, /** * @see https://www.fileformat.info/info/unicode/char/0f85/index.htm */ TIBETAN_MARK_PALUTA = 3973, /** * @see https://www.fileformat.info/info/unicode/char/0fd0/index.htm */ TIBETAN_MARK_BSKA__SHOG_GI_MGO_RGYAN = 4048, /** * @see https://www.fileformat.info/info/unicode/char/0fd1/index.htm */ TIBETAN_MARK_MNYAM_YIG_GI_MGO_RGYAN = 4049, /** * @see https://www.fileformat.info/info/unicode/char/0fd2/index.htm */ TIBETAN_MARK_NYIS_TSHEG = 4050, /** * @see https://www.fileformat.info/info/unicode/char/0fd3/index.htm */ TIBETAN_MARK_INITIAL_BRDA_RNYING_YIG_MGO_MDUN_MA = 4051, /** * @see https://www.fileformat.info/info/unicode/char/0fd4/index.htm */ TIBETAN_MARK_CLOSING_BRDA_RNYING_YIG_MGO_SGAB_MA = 4052, /** * @see https://www.fileformat.info/info/unicode/char/0fd9/index.htm */ TIBETAN_MARK_LEADING_MCHAN_RTAGS = 4057, /** * @see https://www.fileformat.info/info/unicode/char/0fda/index.htm */ TIBETAN_MARK_TRAILING_MCHAN_RTAGS = 4058, /** * @see https://www.fileformat.info/info/unicode/char/104a/index.htm */ MYANMAR_SIGN_LITTLE_SECTION = 4170, /** * @see https://www.fileformat.info/info/unicode/char/104b/index.htm */ MYANMAR_SIGN_SECTION = 4171, /** * @see https://www.fileformat.info/info/unicode/char/104c/index.htm */ MYANMAR_SYMBOL_LOCATIVE = 4172, /** * @see https://www.fileformat.info/info/unicode/char/104d/index.htm */ MYANMAR_SYMBOL_COMPLETED = 4173, /** * @see https://www.fileformat.info/info/unicode/char/104e/index.htm */ MYANMAR_SYMBOL_AFOREMENTIONED = 4174, /** * @see https://www.fileformat.info/info/unicode/char/104f/index.htm */ MYANMAR_SYMBOL_GENITIVE = 4175, /** * @see https://www.fileformat.info/info/unicode/char/10fb/index.htm */ GEORGIAN_PARAGRAPH_SEPARATOR = 4347, /** * @see https://www.fileformat.info/info/unicode/char/1360/index.htm */ ETHIOPIC_SECTION_MARK = 4960, /** * @see https://www.fileformat.info/info/unicode/char/1361/index.htm */ ETHIOPIC_WORDSPACE = 4961, /** * @see https://www.fileformat.info/info/unicode/char/1362/index.htm */ ETHIOPIC_FULL_STOP = 4962, /** * @see https://www.fileformat.info/info/unicode/char/1363/index.htm */ ETHIOPIC_COMMA = 4963, /** * @see https://www.fileformat.info/info/unicode/char/1364/index.htm */ ETHIOPIC_SEMICOLON = 4964, /** * @see https://www.fileformat.info/info/unicode/char/1365/index.htm */ ETHIOPIC_COLON = 4965, /** * @see https://www.fileformat.info/info/unicode/char/1366/index.htm */ ETHIOPIC_PREFACE_COLON = 4966, /** * @see https://www.fileformat.info/info/unicode/char/1367/index.htm */ ETHIOPIC_QUESTION_MARK = 4967, /** * @see https://www.fileformat.info/info/unicode/char/1368/index.htm */ ETHIOPIC_PARAGRAPH_SEPARATOR = 4968, /** * @see https://www.fileformat.info/info/unicode/char/166e/index.htm */ CANADIAN_SYLLABICS_FULL_STOP = 5742, /** * @see https://www.fileformat.info/info/unicode/char/16eb/index.htm */ RUNIC_SINGLE_PUNCTUATION = 5867, /** * @see https://www.fileformat.info/info/unicode/char/16ec/index.htm */ RUNIC_MULTIPLE_PUNCTUATION = 5868, /** * @see https://www.fileformat.info/info/unicode/char/16ed/index.htm */ RUNIC_CROSS_PUNCTUATION = 5869, /** * @see https://www.fileformat.info/info/unicode/char/1735/index.htm */ PHILIPPINE_SINGLE_PUNCTUATION = 5941, /** * @see https://www.fileformat.info/info/unicode/char/1736/index.htm */ PHILIPPINE_DOUBLE_PUNCTUATION = 5942, /** * @see https://www.fileformat.info/info/unicode/char/17d4/index.htm */ KHMER_SIGN_KHAN = 6100, /** * @see https://www.fileformat.info/info/unicode/char/17d5/index.htm */ KHMER_SIGN_BARIYOOSAN = 6101, /** * @see https://www.fileformat.info/info/unicode/char/17d6/index.htm */ KHMER_SIGN_CAMNUC_PII_KUUH = 6102, /** * @see https://www.fileformat.info/info/unicode/char/17d8/index.htm */ KHMER_SIGN_BEYYAL = 6104, /** * @see https://www.fileformat.info/info/unicode/char/17d9/index.htm */ KHMER_SIGN_PHNAEK_MUAN = 6105, /** * @see https://www.fileformat.info/info/unicode/char/17da/index.htm */ KHMER_SIGN_KOOMUUT = 6106, /** * @see https://www.fileformat.info/info/unicode/char/1800/index.htm */ MONGOLIAN_BIRGA = 6144, /** * @see https://www.fileformat.info/info/unicode/char/1801/index.htm */ MONGOLIAN_ELLIPSIS = 6145, /** * @see https://www.fileformat.info/info/unicode/char/1802/index.htm */ MONGOLIAN_COMMA = 6146, /** * @see https://www.fileformat.info/info/unicode/char/1803/index.htm */ MONGOLIAN_FULL_STOP = 6147, /** * @see https://www.fileformat.info/info/unicode/char/1804/index.htm */ MONGOLIAN_COLON = 6148, /** * @see https://www.fileformat.info/info/unicode/char/1805/index.htm */ MONGOLIAN_FOUR_DOTS = 6149, /** * @see https://www.fileformat.info/info/unicode/char/1807/index.htm */ MONGOLIAN_SIBE_SYLLABLE_BOUNDARY_MARKER = 6151, /** * @see https://www.fileformat.info/info/unicode/char/1808/index.htm */ MONGOLIAN_MANCHU_COMMA = 6152, /** * @see https://www.fileformat.info/info/unicode/char/1809/index.htm */ MONGOLIAN_MANCHU_FULL_STOP = 6153, /** * @see https://www.fileformat.info/info/unicode/char/180a/index.htm */ MONGOLIAN_NIRUGU = 6154, /** * @see https://www.fileformat.info/info/unicode/char/1944/index.htm */ LIMBU_EXCLAMATION_MARK = 6468, /** * @see https://www.fileformat.info/info/unicode/char/1945/index.htm */ LIMBU_QUESTION_MARK = 6469, /** * @see https://www.fileformat.info/info/unicode/char/1a1e/index.htm */ BUGINESE_PALLAWA = 6686, /** * @see https://www.fileformat.info/info/unicode/char/1a1f/index.htm */ BUGINESE_END_OF_SECTION = 6687, /** * @see https://www.fileformat.info/info/unicode/char/1aa0/index.htm */ TAI_THAM_SIGN_WIANG = 6816, /** * @see https://www.fileformat.info/info/unicode/char/1aa1/index.htm */ TAI_THAM_SIGN_WIANGWAAK = 6817, /** * @see https://www.fileformat.info/info/unicode/char/1aa2/index.htm */ TAI_THAM_SIGN_SAWAN = 6818, /** * @see https://www.fileformat.info/info/unicode/char/1aa3/index.htm */ TAI_THAM_SIGN_KEOW = 6819, /** * @see https://www.fileformat.info/info/unicode/char/1aa4/index.htm */ TAI_THAM_SIGN_HOY = 6820, /** * @see https://www.fileformat.info/info/unicode/char/1aa5/index.htm */ TAI_THAM_SIGN_DOKMAI = 6821, /** * @see https://www.fileformat.info/info/unicode/char/1aa6/index.htm */ TAI_THAM_SIGN_REVERSED_ROTATED_RANA = 6822, /** * @see https://www.fileformat.info/info/unicode/char/1aa8/index.htm */ TAI_THAM_SIGN_KAAN = 6824, /** * @see https://www.fileformat.info/info/unicode/char/1aa9/index.htm */ TAI_THAM_SIGN_KAANKUU = 6825, /** * @see https://www.fileformat.info/info/unicode/char/1aaa/index.htm */ TAI_THAM_SIGN_SATKAAN = 6826, /** * @see https://www.fileformat.info/info/unicode/char/1aab/index.htm */ TAI_THAM_SIGN_SATKAANKUU = 6827, /** * @see https://www.fileformat.info/info/unicode/char/1aac/index.htm */ TAI_THAM_SIGN_HANG = 6828, /** * @see https://www.fileformat.info/info/unicode/char/1aad/index.htm */ TAI_THAM_SIGN_CAANG = 6829, /** * @see https://www.fileformat.info/info/unicode/char/1b4e/index.htm */ BALINESE_INVERTED_CARIK_SIKI = 6990, /** * @see https://www.fileformat.info/info/unicode/char/1b4f/index.htm */ BALINESE_INVERTED_CARIK_PAREREN = 6991, /** * @see https://www.fileformat.info/info/unicode/char/1b5a/index.htm */ BALINESE_PANTI = 7002, /** * @see https://www.fileformat.info/info/unicode/char/1b5b/index.htm */ BALINESE_PAMADA = 7003, /** * @see https://www.fileformat.info/info/unicode/char/1b5c/index.htm */ BALINESE_WINDU = 7004, /** * @see https://www.fileformat.info/info/unicode/char/1b5d/index.htm */ BALINESE_CARIK_PAMUNGKAH = 7005, /** * @see https://www.fileformat.info/info/unicode/char/1b5e/index.htm */ BALINESE_CARIK_SIKI = 7006, /** * @see https://www.fileformat.info/info/unicode/char/1b5f/index.htm */ BALINESE_CARIK_PAREREN = 7007, /** * @see https://www.fileformat.info/info/unicode/char/1b60/index.htm */ BALINESE_PAMENENG = 7008, /** * @see https://www.fileformat.info/info/unicode/char/1b7d/index.htm */ BALINESE_PANTI_LANTANG = 7037, /** * @see https://www.fileformat.info/info/unicode/char/1b7e/index.htm */ BALINESE_PAMADA_LANTANG = 7038, /** * @see https://www.fileformat.info/info/unicode/char/1b7f/index.htm */ BALINESE_PANTI_BAWAK = 7039, /** * @see https://www.fileformat.info/info/unicode/char/1bfc/index.htm */ BATAK_SYMBOL_BINDU_NA_METEK = 7164, /** * @see https://www.fileformat.info/info/unicode/char/1bfd/index.htm */ BATAK_SYMBOL_BINDU_PINARBORAS = 7165, /** * @see https://www.fileformat.info/info/unicode/char/1bfe/index.htm */ BATAK_SYMBOL_BINDU_JUDUL = 7166, /** * @see https://www.fileformat.info/info/unicode/char/1bff/index.htm */ BATAK_SYMBOL_BINDU_PANGOLAT = 7167, /** * @see https://www.fileformat.info/info/unicode/char/1c3b/index.htm */ LEPCHA_PUNCTUATION_TA_ROL = 7227, /** * @see https://www.fileformat.info/info/unicode/char/1c3c/index.htm */ LEPCHA_PUNCTUATION_NYET_THYOOM_TA_ROL = 7228, /** * @see https://www.fileformat.info/info/unicode/char/1c3d/index.htm */ LEPCHA_PUNCTUATION_CER_WA = 7229, /** * @see https://www.fileformat.info/info/unicode/char/1c3e/index.htm */ LEPCHA_PUNCTUATION_TSHOOK_CER_WA = 7230, /** * @see https://www.fileformat.info/info/unicode/char/1c3f/index.htm */ LEPCHA_PUNCTUATION_TSHOOK = 7231, /** * @see https://www.fileformat.info/info/unicode/char/1c7e/index.htm */ OL_CHIKI_PUNCTUATION_MUCAAD = 7294, /** * @see https://www.fileformat.info/info/unicode/char/1c7f/index.htm */ OL_CHIKI_PUNCTUATION_DOUBLE_MUCAAD = 7295, /** * @see https://www.fileformat.info/info/unicode/char/1cc0/index.htm */ SUNDANESE_PUNCTUATION_BINDU_SURYA = 7360, /** * @see https://www.fileformat.info/info/unicode/char/1cc1/index.htm */ SUNDANESE_PUNCTUATION_BINDU_PANGLONG = 7361, /** * @see https://www.fileformat.info/info/unicode/char/1cc2/index.htm */ SUNDANESE_PUNCTUATION_BINDU_PURNAMA = 7362, /** * @see https://www.fileformat.info/info/unicode/char/1cc3/index.htm */ SUNDANESE_PUNCTUATION_BINDU_CAKRA = 7363, /** * @see https://www.fileformat.info/info/unicode/char/1cc4/index.htm */ SUNDANESE_PUNCTUATION_BINDU_LEU_SATANGA = 7364, /** * @see https://www.fileformat.info/info/unicode/char/1cc5/index.htm */ SUNDANESE_PUNCTUATION_BINDU_KA_SATANGA = 7365, /** * @see https://www.fileformat.info/info/unicode/char/1cc6/index.htm */ SUNDANESE_PUNCTUATION_BINDU_DA_SATANGA = 7366, /** * @see https://www.fileformat.info/info/unicode/char/1cc7/index.htm */ SUNDANESE_PUNCTUATION_BINDU_BA_SATANGA = 7367, /** * @see https://www.fileformat.info/info/unicode/char/1cd3/index.htm */ VEDIC_SIGN_NIHSHVASA = 7379, /** * @see https://www.fileformat.info/info/unicode/char/2016/index.htm */ DOUBLE_VERTICAL_LINE = 8214, /** * @see https://www.fileformat.info/info/unicode/char/2017/index.htm */ DOUBLE_LOW_LINE = 8215, /** * @see https://www.fileformat.info/info/unicode/char/2020/index.htm */ DAGGER = 8224, /** * @see https://www.fileformat.info/info/unicode/char/2021/index.htm */ DOUBLE_DAGGER = 8225, /** * @see https://www.fileformat.info/info/unicode/char/2022/index.htm */ BULLET = 8226, /** * @see https://www.fileformat.info/info/unicode/char/2023/index.htm */ TRIANGULAR_BULLET = 8227, /** * @see https://www.fileformat.info/info/unicode/char/2024/index.htm */ ONE_DOT_LEADER = 8228, /** * @see https://www.fileformat.info/info/unicode/char/2025/index.htm */ TWO_DOT_LEADER = 8229, /** * @see https://www.fileformat.info/info/unicode/char/2026/index.htm */ HORIZONTAL_ELLIPSIS = 8230, /** * @see https://www.fileformat.info/info/unicode/char/2027/index.htm */ HYPHENATION_POINT = 8231, /** * @see https://www.fileformat.info/info/unicode/char/2030/index.htm */ PER_MILLE_SIGN = 8240, /** * @see https://www.fileformat.info/info/unicode/char/2031/index.htm */ PER_TEN_THOUSAND_SIGN = 8241, /** * @see https://www.fileformat.info/info/unicode/char/2032/index.htm */ PRIME = 8242, /** * @see https://www.fileformat.info/info/unicode/char/2033/index.htm */ DOUBLE_PRIME = 8243, /** * @see https://www.fileformat.info/info/unicode/char/2034/index.htm */ TRIPLE_PRIME = 8244, /** * @see https://www.fileformat.info/info/unicode/char/2035/index.htm */ REVERSED_PRIME = 8245, /** * @see https://www.fileformat.info/info/unicode/char/2036/index.htm */ REVERSED_DOUBLE_PRIME = 8246, /** * @see https://www.fileformat.info/info/unicode/char/2037/index.htm */ REVERSED_TRIPLE_PRIME = 8247, /** * @see https://www.fileformat.info/info/unicode/char/2038/index.htm */ CARET = 8248, /** * @see https://www.fileformat.info/info/unicode/char/203b/index.htm */ REFERENCE_MARK = 8251, /** * @see https://www.fileformat.info/info/unicode/char/203c/index.htm */ DOUBLE_EXCLAMATION_MARK = 8252, /** * @see https://www.fileformat.info/info/unicode/char/203d/index.htm */ INTERROBANG = 8253, /** * @see https://www.fileformat.info/info/unicode/char/203e/index.htm */ OVERLINE = 8254, /** * @see https://www.fileformat.info/info/unicode/char/2041/index.htm */ CARET_INSERTION_POINT = 8257, /** * @see https://www.fileformat.info/info/unicode/char/2042/index.htm */ ASTERISM = 8258, /** * @see https://www.fileformat.info/info/unicode/char/2043/index.htm */ HYPHEN_BULLET = 8259, /** * @see https://www.fileformat.info/info/unicode/char/2047/index.htm */ DOUBLE_QUESTION_MARK = 8263, /** * @see https://www.fileformat.info/info/unicode/char/2048/index.htm */ QUESTION_EXCLAMATION_MARK = 8264, /** * @see https://www.fileformat.info/info/unicode/char/2049/index.htm */ EXCLAMATION_QUESTION_MARK = 8265, /** * @see https://www.fileformat.info/info/unicode/char/204a/index.htm */ TIRONIAN_SIGN_ET = 8266, /** * @see https://www.fileformat.info/info/unicode/char/204b/index.htm */ REVERSED_PILCROW_SIGN = 8267, /** * @see https://www.fileformat.info/info/unicode/char/204c/index.htm */ BLACK_LEFTWARDS_BULLET = 8268, /** * @see https://www.fileformat.info/info/unicode/char/204d/index.htm */ BLACK_RIGHTWARDS_BULLET = 8269, /** * @see https://www.fileformat.info/info/unicode/char/204e/index.htm */ LOW_ASTERISK = 8270, /** * @see https://www.fileformat.info/info/unicode/char/204f/index.htm */ REVERSED_SEMICOLON = 8271, /** * @see https://www.fileformat.info/info/unicode/char/2050/index.htm */ CLOSE_UP = 8272, /** * @see https://www.fileformat.info/info/unicode/char/2051/index.htm */ TWO_ASTERISKS_ALIGNED_VERTICALLY = 8273, /** * @see https://www.fileformat.info/info/unicode/char/2053/index.htm */ SWUNG_DASH = 8275, /** * @see https://www.fileformat.info/info/unicode/char/2055/index.htm */ FLOWER_PUNCTUATION_MARK = 8277, /** * @see https://www.fileformat.info/info/unicode/char/2056/index.htm */ THREE_DOT_PUNCTUATION = 8278, /** * @see https://www.fileformat.info/info/unicode/char/2057/index.htm */ QUADRUPLE_PRIME = 8279, /** * @see https://www.fileformat.info/info/unicode/char/2058/index.htm */ FOUR_DOT_PUNCTUATION = 8280, /** * @see https://www.fileformat.info/info/unicode/char/2059/index.htm */ FIVE_DOT_PUNCTUATION = 8281, /** * @see https://www.fileformat.info/info/unicode/char/205a/index.htm */ TWO_DOT_PUNCTUATION = 8282, /** * @see https://www.fileformat.info/info/unicode/char/205b/index.htm */ FOUR_DOT_MARK = 8283, /** * @see https://www.fileformat.info/info/unicode/char/205c/index.htm */ DOTTED_CROSS = 8284, /** * @see https://www.fileformat.info/info/unicode/char/205d/index.htm */ TRICOLON = 8285, /** * @see https://www.fileformat.info/info/unicode/char/205e/index.htm */ VERTICAL_FOUR_DOTS = 8286, /** * @see https://www.fileformat.info/info/unicode/char/2cf9/index.htm */ COPTIC_OLD_NUBIAN_FULL_STOP = 11513, /** * @see https://www.fileformat.info/info/unicode/char/2cfa/index.htm */ COPTIC_OLD_NUBIAN_DIRECT_QUESTION_MARK = 11514, /** * @see https://www.fileformat.info/info/unicode/char/2cfb/index.htm */ COPTIC_OLD_NUBIAN_INDIRECT_QUESTION_MARK = 11515, /** * @see https://www.fileformat.info/info/unicode/char/2cfc/index.htm */ COPTIC_OLD_NUBIAN_VERSE_DIVIDER = 11516, /** * @see https://www.fileformat.info/info/unicode/char/2cfe/index.htm */ COPTIC_FULL_STOP = 11518, /** * @see https://www.fileformat.info/info/unicode/char/2cff/index.htm */ COPTIC_MORPHOLOGICAL_DIVIDER = 11519, /** * @see https://www.fileformat.info/info/unicode/char/2d70/index.htm */ TIFINAGH_SEPARATOR_MARK = 11632, /** * @see https://www.fileformat.info/info/unicode/char/2e00/index.htm */ RIGHT_ANGLE_SUBSTITUTION_MARKER = 11776, /** * @see https://www.fileformat.info/info/unicode/char/2e01/index.htm */ RIGHT_ANGLE_DOTTED_SUBSTITUTION_MARKER = 11777, /** * @see https://www.fileformat.info/info/unicode/char/2e06/index.htm */ RAISED_INTERPOLATION_MARKER = 11782, /** * @see https://www.fileformat.info/info/unicode/char/2e07/index.htm */ RAISED_DOTTED_INTERPOLATION_MARKER = 11783, /** * @see https://www.fileformat.info/info/unicode/char/2e08/index.htm */ DOTTED_TRANSPOSITION_MARKER = 11784, /** * @see https://www.fileformat.info/info/unicode/char/2e0b/index.htm */ RAISED_SQUARE = 11787, /** * @see https://www.fileformat.info/info/unicode/char/2e0e/index.htm */ EDITORIAL_CORONIS = 11790, /** * @see https://www.fileformat.info/info/unicode/char/2e0f/index.htm */ PARAGRAPHOS = 11791, /** * @see https://www.fileformat.info/info/unicode/char/2e10/index.htm */ FORKED_PARAGRAPHOS = 11792, /** * @see https://www.fileformat.info/info/unicode/char/2e11/index.htm */ REVERSED_FORKED_PARAGRAPHOS = 11793, /** * @see https://www.fileformat.info/info/unicode/char/2e12/index.htm */ HYPODIASTOLE = 11794, /** * @see https://www.fileformat.info/info/unicode/char/2e13/index.htm */ DOTTED_OBELOS = 11795, /** * @see https://www.fileformat.info/info/unicode/char/2e14/index.htm */ DOWNWARDS_ANCORA = 11796, /** * @see https://www.fileformat.info/info/unicode/char/2e15/index.htm */ UPWARDS_ANCORA = 11797, /** * @see https://www.fileformat.info/info/unicode/char/2e16/index.htm */ DOTTED_RIGHT_POINTING_ANGLE = 11798, /** * @see https://www.fileformat.info/info/unicode/char/2e18/index.htm */ INVERTED_INTERROBANG = 11800, /** * @see https://www.fileformat.info/info/unicode/char/2e19/index.htm */ PALM_BRANCH = 11801, /** * @see https://www.fileformat.info/info/unicode/char/2e1b/index.htm */ TILDE_WITH_RING_ABOVE = 11803, /** * @see https://www.fileformat.info/info/unicode/char/2e1e/index.htm */ TILDE_WITH_DOT_ABOVE = 11806, /** * @see https://www.fileformat.info/info/unicode/char/2e1f/index.htm */ TILDE_WITH_DOT_BELOW = 11807, /** * @see https://www.fileformat.info/info/unicode/char/2e2a/index.htm */ TWO_DOTS_OVER_ONE_DOT_PUNCTUATION = 11818, /** * @see https://www.fileformat.info/info/unicode/char/2e2b/index.htm */ ONE_DOT_OVER_TWO_DOTS_PUNCTUATION = 11819, /** * @see https://www.fileformat.info/info/unicode/char/2e2c/index.htm */ SQUARED_FOUR_DOT_PUNCTUATION = 11820, /** * @see https://www.fileformat.info/info/unicode/char/2e2d/index.htm */ FIVE_DOT_MARK = 11821, /** * @see https://www.fileformat.info/info/unicode/char/2e2e/index.htm */ REVERSED_QUESTION_MARK = 11822, /** * @see https://www.fileformat.info/info/unicode/char/2e30/index.htm */ RING_POINT = 11824, /** * @see https://www.fileformat.info/info/unicode/char/2e31/index.htm */ WORD_SEPARATOR_MIDDLE_DOT = 11825, /** * @see https://www.fileformat.info/info/unicode/char/2e32/index.htm */ TURNED_COMMA = 11826, /** * @see https://www.fileformat.info/info/unicode/char/2e33/index.htm */ RAISED_DOT = 11827, /** * @see https://www.fileformat.info/info/unicode/char/2e34/index.htm */ RAISED_COMMA = 11828, /** * @see https://www.fileformat.info/info/unicode/char/2e35/index.htm */ TURNED_SEMICOLON = 11829, /** * @see https://www.fileformat.info/info/unicode/char/2e36/index.htm */ DAGGER_WITH_LEFT_GUARD = 11830, /** * @see https://www.fileformat.info/info/unicode/char/2e37/index.htm */ DAGGER_WITH_RIGHT_GUARD = 11831, /** * @see https://www.fileformat.info/info/unicode/char/2e38/index.htm */ TURNED_DAGGER = 11832, /** * @see https://www.fileformat.info/info/unicode/char/2e39/index.htm */ TOP_HALF_SECTION_SIGN = 11833, /** * @see https://www.fileformat.info/info/unicode/char/2e3c/index.htm */ STENOGRAPHIC_FULL_STOP = 11836, /** * @see https://www.fileformat.info/info/unicode/char/2e3d/index.htm */ VERTICAL_SIX_DOTS = 11837, /** * @see https://www.fileformat.info/info/unicode/char/2e3e/index.htm */ WIGGLY_VERTICAL_LINE = 11838, /** * @see https://www.fileformat.info/info/unicode/char/2e3f/index.htm */ CAPITULUM = 11839, /** * @see https://www.fileformat.info/info/unicode/char/2e41/index.htm */ REVERSED_COMMA = 11841, /** * @see https://www.fileformat.info/info/unicode/char/2e43/index.htm */ DASH_WITH_LEFT_UPTURN = 11843, /** * @see https://www.fileformat.info/info/unicode/char/2e44/index.htm */ DOUBLE_SUSPENSION_MARK = 11844, /** * @see https://www.fileformat.info/info/unicode/char/2e45/index.htm */ INVERTED_LOW_KAVYKA = 11845, /** * @see https://www.fileformat.info/info/unicode/char/2e46/index.htm */ INVERTED_LOW_KAVYKA_WITH_KAVYKA_ABOVE = 11846, /** * @see https://www.fileformat.info/info/unicode/char/2e47/index.htm */ LOW_KAVYKA = 11847, /** * @see https://www.fileformat.info/info/unicode/char/2e48/index.htm */ LOW_KAVYKA_WITH_DOT = 11848, /** * @see https://www.fileformat.info/info/unicode/char/2e49/index.htm */ DOUBLE_STACKED_COMMA = 11849, /** * @see https://www.fileformat.info/info/unicode/char/2e4a/index.htm */ DOTTED_SOLIDUS = 11850, /** * @see https://www.fileformat.info/info/unicode/char/2e4b/index.htm */ TRIPLE_DAGGER = 11851, /** * @see https://www.fileformat.info/info/unicode/char/2e4c/index.htm */ MEDIEVAL_COMMA = 11852, /** * @see https://www.fileformat.info/info/unicode/char/2e4d/index.htm */ PARAGRAPHUS_MARK = 11853, /** * @see https://www.fileformat.info/info/unicode/char/2e4e/index.htm */ PUNCTUS_ELEVATUS_MARK = 11854, /** * @see https://www.fileformat.info/info/unicode/char/2e4f/index.htm */ CORNISH_VERSE_DIVIDER = 11855, /** * @see https://www.fileformat.info/info/unicode/char/2e52/index.htm */ TIRONIAN_SIGN_CAPITAL_ET = 11858, /** * @see https://www.fileformat.info/info/unicode/char/2e53/index.htm */ MEDIEVAL_EXCLAMATION_MARK = 11859, /** * @see https://www.fileformat.info/info/unicode/char/2e54/index.htm */ MEDIEVAL_QUESTION_MARK = 11860, /** * @see https://www.fileformat.info/info/unicode/char/3001/index.htm */ IDEOGRAPHIC_COMMA = 12289, /** * @see https://www.fileformat.info/info/unicode/char/3002/index.htm */ IDEOGRAPHIC_FULL_STOP = 12290, /** * @see https://www.fileformat.info/info/unicode/char/3003/index.htm */ DITTO_MARK = 12291, /** * @see https://www.fileformat.info/info/unicode/char/303d/index.htm */ PART_ALTERNATION_MARK = 12349, /** * @see https://www.fileformat.info/info/unicode/char/30fb/index.htm */ KATAKANA_MIDDLE_DOT = 12539, /** * @see https://www.fileformat.info/info/unicode/char/a4fe/index.htm */ LISU_PUNCTUATION_COMMA = 42238, /** * @see https://www.fileformat.info/info/unicode/char/a4ff/index.htm */ LISU_PUNCTUATION_FULL_STOP = 42239, /** * @see https://www.fileformat.info/info/unicode/char/a60d/index.htm */ VAI_COMMA = 42509, /** * @see https://www.fileformat.info/info/unicode/char/a60e/index.htm */ VAI_FULL_STOP = 42510, /** * @see https://www.fileformat.info/info/unicode/char/a60f/index.htm */ VAI_QUESTION_MARK = 42511, /** * @see https://www.fileformat.info/info/unicode/char/a673/index.htm */ SLAVONIC_ASTERISK = 42611, /** * @see https://www.fileformat.info/info/unicode/char/a67e/index.htm */ CYRILLIC_KAVYKA = 42622, /** * @see https://www.fileformat.info/info/unicode/char/a6f2/index.htm */ BAMUM_NJAEMLI = 42738, /** * @see https://www.fileformat.info/info/unicode/char/a6f3/index.htm */ BAMUM_FULL_STOP = 42739, /** * @see https://www.fileformat.info/info/unicode/char/a6f4/index.htm */ BAMUM_COLON = 42740, /** * @see https://www.fileformat.info/info/unicode/char/a6f5/index.htm */ BAMUM_COMMA = 42741, /** * @see https://www.fileformat.info/info/unicode/char/a6f6/index.htm */ BAMUM_SEMICOLON = 42742, /** * @see https://www.fileformat.info/info/unicode/char/a6f7/index.htm */ BAMUM_QUESTION_MARK = 42743, /** * @see https://www.fileformat.info/info/unicode/char/a874/index.htm */ PHAGS_PA_SINGLE_HEAD_MARK = 43124, /** * @see https://www.fileformat.info/info/unicode/char/a875/index.htm */ PHAGS_PA_DOUBLE_HEAD_MARK = 43125, /** * @see https://www.fileformat.info/info/unicode/char/a876/index.htm */ PHAGS_PA_MARK_SHAD = 43126, /** * @see https://www.fileformat.info/info/unicode/char/a877/index.htm */ PHAGS_PA_MARK_DOUBLE_SHAD = 43127, /** * @see https://www.fileformat.info/info/unicode/char/a8ce/index.htm */ SAURASHTRA_DANDA = 43214, /** * @see https://www.fileformat.info/info/unicode/char/a8cf/index.htm */ SAURASHTRA_DOUBLE_DANDA = 43215, /** * @see https://www.fileformat.info/info/unicode/char/a8f8/index.htm */ DEVANAGARI_SIGN_PUSHPIKA = 43256, /** * @see https://www.fileformat.info/info/unicode/char/a8f9/index.htm */ DEVANAGARI_GAP_FILLER = 43257, /** * @see https://www.fileformat.info/info/unicode/char/a8fa/index.htm */ DEVANAGARI_CARET = 43258, /** * @see https://www.fileformat.info/info/unicode/char/a8fc/index.htm */ DEVANAGARI_SIGN_SIDDHAM = 43260, /** * @see https://www.fileformat.info/info/unicode/char/a92e/index.htm */ KAYAH_LI_SIGN_CWI = 43310, /** * @see https://www.fileformat.info/info/unicode/char/a92f/index.htm */ KAYAH_LI_SIGN_SHYA = 43311, /** * @see https://www.fileformat.info/info/unicode/char/a95f/index.htm */ REJANG_SECTION_MARK = 43359, /** * @see https://www.fileformat.info/info/unicode/char/a9c1/index.htm */ JAVANESE_LEFT_RERENGGAN = 43457, /** * @see https://www.fileformat.info/info/unicode/char/a9c2/index.htm */ JAVANESE_RIGHT_RERENGGAN = 43458, /** * @see https://www.fileformat.info/info/unicode/char/a9c3/index.htm */ JAVANESE_PADA_ANDAP = 43459, /** * @see https://www.fileformat.info/info/unicode/char/a9c4/index.htm */ JAVANESE_PADA_MADYA = 43460, /** * @see https://www.fileformat.info/info/unicode/char/a9c5/index.htm */ JAVANESE_PADA_LUHUR = 43461, /** * @see https://www.fileformat.info/info/unicode/char/a9c6/index.htm */ JAVANESE_PADA_WINDU = 43462, /** * @see https://www.fileformat.info/info/unicode/char/a9c7/index.htm */ JAVANESE_PADA_PANGKAT = 43463, /** * @see https://www.fileformat.info/info/unicode/char/a9c8/index.htm */ JAVANESE_PADA_LINGSA = 43464, /** * @see https://www.fileformat.info/info/unicode/char/a9c9/index.htm */ JAVANESE_PADA_LUNGSI = 43465, /** * @see https://www.fileformat.info/info/unicode/char/a9ca/index.htm */ JAVANESE_PADA_ADEG = 43466, /** * @see https://www.fileformat.info/info/unicode/char/a9cb/index.htm */ JAVANESE_PADA_ADEG_ADEG = 43467, /** * @see https://www.fileformat.info/info/unicode/char/a9cc/index.htm */ JAVANESE_PADA_PISELEH = 43468, /** * @see https://www.fileformat.info/info/unicode/char/a9cd/index.htm */ JAVANESE_TURNED_PADA_PISELEH = 43469, /** * @see https://www.fileformat.info/info/unicode/char/a9de/index.htm */ JAVANESE_PADA_TIRTA_TUMETES = 43486, /** * @see https://www.fileformat.info/info/unicode/char/a9df/index.htm */ JAVANESE_PADA_ISEN_ISEN = 43487, /** * @see https://www.fileformat.info/info/unicode/char/aa5c/index.htm */ CHAM_PUNCTUATION_SPIRAL = 43612, /** * @see https://www.fileformat.info/info/unicode/char/aa5d/index.htm */ CHAM_PUNCTUATION_DANDA = 43613, /** * @see https://www.fileformat.info/info/unicode/char/aa5e/index.htm */ CHAM_PUNCTUATION_DOUBLE_DANDA = 43614, /** * @see https://www.fileformat.info/info/unicode/char/aa5f/index.htm */ CHAM_PUNCTUATION_TRIPLE_DANDA = 43615, /** * @see https://www.fileformat.info/info/unicode/char/aade/index.htm */ TAI_VIET_SYMBOL_HO_HOI = 43742, /** * @see https://www.fileformat.info/info/unicode/char/aadf/index.htm */ TAI_VIET_SYMBOL_KOI_KOI = 43743, /** * @see https://www.fileformat.info/info/unicode/char/aaf0/index.htm */ MEETEI_MAYEK_CHEIKHAN = 43760, /** * @see https://www.fileformat.info/info/unicode/char/aaf1/index.htm */ MEETEI_MAYEK_AHANG_KHUDAM = 43761, /** * @see https://www.fileformat.info/info/unicode/char/abeb/index.htm */ MEETEI_MAYEK_CHEIKHEI = 44011, /** * @see https://www.fileformat.info/info/unicode/char/fe10/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_COMMA = 65040, /** * @see https://www.fileformat.info/info/unicode/char/fe11/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_IDEOGRAPHIC_COMMA = 65041, /** * @see https://www.fileformat.info/info/unicode/char/fe12/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_IDEOGRAPHIC_FULL_STOP = 65042, /** * @see https://www.fileformat.info/info/unicode/char/fe13/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_COLON = 65043, /** * @see https://www.fileformat.info/info/unicode/char/fe14/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_SEMICOLON = 65044, /** * @see https://www.fileformat.info/info/unicode/char/fe15/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_EXCLAMATION_MARK = 65045, /** * @see https://www.fileformat.info/info/unicode/char/fe16/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_QUESTION_MARK = 65046, /** * @see https://www.fileformat.info/info/unicode/char/fe19/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_HORIZONTAL_ELLIPSIS = 65049, /** * @see https://www.fileformat.info/info/unicode/char/fe30/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_TWO_DOT_LEADER = 65072, /** * @see https://www.fileformat.info/info/unicode/char/fe45/index.htm */ SESAME_DOT = 65093, /** * @see https://www.fileformat.info/info/unicode/char/fe46/index.htm */ WHITE_SESAME_DOT = 65094, /** * @see https://www.fileformat.info/info/unicode/char/fe49/index.htm */ DASHED_OVERLINE = 65097, /** * @see https://www.fileformat.info/info/unicode/char/fe4a/index.htm */ CENTRELINE_OVERLINE = 65098, /** * @see https://www.fileformat.info/info/unicode/char/fe4b/index.htm */ WAVY_OVERLINE = 65099, /** * @see https://www.fileformat.info/info/unicode/char/fe4c/index.htm */ DOUBLE_WAVY_OVERLINE = 65100, /** * @see https://www.fileformat.info/info/unicode/char/fe50/index.htm */ SMALL_COMMA = 65104, /** * @see https://www.fileformat.info/info/unicode/char/fe51/index.htm */ SMALL_IDEOGRAPHIC_COMMA = 65105, /** * @see https://www.fileformat.info/info/unicode/char/fe52/index.htm */ SMALL_FULL_STOP = 65106, /** * @see https://www.fileformat.info/info/unicode/char/fe54/index.htm */ SMALL_SEMICOLON = 65108, /** * @see https://www.fileformat.info/info/unicode/char/fe55/index.htm */ SMALL_COLON = 65109, /** * @see https://www.fileformat.info/info/unicode/char/fe56/index.htm */ SMALL_QUESTION_MARK = 65110, /** * @see https://www.fileformat.info/info/unicode/char/fe57/index.htm */ SMALL_EXCLAMATION_MARK = 65111, /** * @see https://www.fileformat.info/info/unicode/char/fe5f/index.htm */ SMALL_NUMBER_SIGN = 65119, /** * @see https://www.fileformat.info/info/unicode/char/fe60/index.htm */ SMALL_AMPERSAND = 65120, /** * @see https://www.fileformat.info/info/unicode/char/fe61/index.htm */ SMALL_ASTERISK = 65121, /** * @see https://www.fileformat.info/info/unicode/char/fe68/index.htm */ SMALL_REVERSE_SOLIDUS = 65128, /** * @see https://www.fileformat.info/info/unicode/char/fe6a/index.htm */ SMALL_PERCENT_SIGN = 65130, /** * @see https://www.fileformat.info/info/unicode/char/fe6b/index.htm */ SMALL_COMMERCIAL_AT = 65131, /** * @see https://www.fileformat.info/info/unicode/char/ff01/index.htm */ FULLWIDTH_EXCLAMATION_MARK = 65281, /** * @see https://www.fileformat.info/info/unicode/char/ff02/index.htm */ FULLWIDTH_QUOTATION_MARK = 65282, /** * @see https://www.fileformat.info/info/unicode/char/ff03/index.htm */ FULLWIDTH_NUMBER_SIGN = 65283, /** * @see https://www.fileformat.info/info/unicode/char/ff05/index.htm */ FULLWIDTH_PERCENT_SIGN = 65285, /** * @see https://www.fileformat.info/info/unicode/char/ff06/index.htm */ FULLWIDTH_AMPERSAND = 65286, /** * @see https://www.fileformat.info/info/unicode/char/ff07/index.htm */ FULLWIDTH_APOSTROPHE = 65287, /** * @see https://www.fileformat.info/info/unicode/char/ff0a/index.htm */ FULLWIDTH_ASTERISK = 65290, /** * @see https://www.fileformat.info/info/unicode/char/ff0c/index.htm */ FULLWIDTH_COMMA = 65292, /** * @see https://www.fileformat.info/info/unicode/char/ff0e/index.htm */ FULLWIDTH_FULL_STOP = 65294, /** * @see https://www.fileformat.info/info/unicode/char/ff0f/index.htm */ FULLWIDTH_SOLIDUS = 65295, /** * @see https://www.fileformat.info/info/unicode/char/ff1a/index.htm */ FULLWIDTH_COLON = 65306, /** * @see https://www.fileformat.info/info/unicode/char/ff1b/index.htm */ FULLWIDTH_SEMICOLON = 65307, /** * @see https://www.fileformat.info/info/unicode/char/ff1f/index.htm */ FULLWIDTH_QUESTION_MARK = 65311, /** * @see https://www.fileformat.info/info/unicode/char/ff20/index.htm */ FULLWIDTH_COMMERCIAL_AT = 65312, /** * @see https://www.fileformat.info/info/unicode/char/ff3c/index.htm */ FULLWIDTH_REVERSE_SOLIDUS = 65340, /** * @see https://www.fileformat.info/info/unicode/char/ff61/index.htm */ HALFWIDTH_IDEOGRAPHIC_FULL_STOP = 65377, /** * @see https://www.fileformat.info/info/unicode/char/ff64/index.htm */ HALFWIDTH_IDEOGRAPHIC_COMMA = 65380, /** * @see https://www.fileformat.info/info/unicode/char/ff65/index.htm */ HALFWIDTH_KATAKANA_MIDDLE_DOT = 65381, /** * @see https://www.fileformat.info/info/unicode/char/10100/index.htm */ AEGEAN_WORD_SEPARATOR_LINE = 65792, /** * @see https://www.fileformat.info/info/unicode/char/10101/index.htm */ AEGEAN_WORD_SEPARATOR_DOT = 65793, /** * @see https://www.fileformat.info/info/unicode/char/10102/index.htm */ AEGEAN_CHECK_MARK = 65794, /** * @see https://www.fileformat.info/info/unicode/char/1039f/index.htm */ UGARITIC_WORD_DIVIDER = 66463, /** * @see https://www.fileformat.info/info/unicode/char/103d0/index.htm */ OLD_PERSIAN_WORD_DIVIDER = 66512, /** * @see https://www.fileformat.info/info/unicode/char/1056f/index.htm */ CAUCASIAN_ALBANIAN_CITATION_MARK = 66927, /** * @see https://www.fileformat.info/info/unicode/char/10857/index.htm */ IMPERIAL_ARAMAIC_SECTION_SIGN = 67671, /** * @see https://www.fileformat.info/info/unicode/char/1091f/index.htm */ PHOENICIAN_WORD_SEPARATOR = 67871, /** * @see https://www.fileformat.info/info/unicode/char/1093f/index.htm */ LYDIAN_TRIANGULAR_MARK = 67903, /** * @see https://www.fileformat.info/info/unicode/char/10a50/index.htm */ KHAROSHTHI_PUNCTUATION_DOT = 68176, /** * @see https://www.fileformat.info/info/unicode/char/10a51/index.htm */ KHAROSHTHI_PUNCTUATION_SMALL_CIRCLE = 68177, /** * @see https://www.fileformat.info/info/unicode/char/10a52/index.htm */ KHAROSHTHI_PUNCTUATION_CIRCLE = 68178, /** * @see https://www.fileformat.info/info/unicode/char/10a53/index.htm */ KHAROSHTHI_PUNCTUATION_CRESCENT_BAR = 68179, /** * @see https://www.fileformat.info/info/unicode/char/10a54/index.htm */ KHAROSHTHI_PUNCTUATION_MANGALAM = 68180, /** * @see https://www.fileformat.info/info/unicode/char/10a55/index.htm */ KHAROSHTHI_PUNCTUATION_LOTUS = 68181, /** * @see https://www.fileformat.info/info/unicode/char/10a56/index.htm */ KHAROSHTHI_PUNCTUATION_DANDA = 68182, /** * @see https://www.fileformat.info/info/unicode/char/10a57/index.htm */ KHAROSHTHI_PUNCTUATION_DOUBLE_DANDA = 68183, /** * @see https://www.fileformat.info/info/unicode/char/10a58/index.htm */ KHAROSHTHI_PUNCTUATION_LINES = 68184, /** * @see https://www.fileformat.info/info/unicode/char/10a7f/index.htm */ OLD_SOUTH_ARABIAN_NUMERIC_INDICATOR = 68223, /** * @see https://www.fileformat.info/info/unicode/char/10af0/index.htm */ MANICHAEAN_PUNCTUATION_STAR = 68336, /** * @see https://www.fileformat.info/info/unicode/char/10af1/index.htm */ MANICHAEAN_PUNCTUATION_FLEURON = 68337, /** * @see https://www.fileformat.info/info/unicode/char/10af2/index.htm */ MANICHAEAN_PUNCTUATION_DOUBLE_DOT_WITHIN_DOT = 68338, /** * @see https://www.fileformat.info/info/unicode/char/10af3/index.htm */ MANICHAEAN_PUNCTUATION_DOT_WITHIN_DOT = 68339, /** * @see https://www.fileformat.info/info/unicode/char/10af4/index.htm */ MANICHAEAN_PUNCTUATION_DOT = 68340, /** * @see https://www.fileformat.info/info/unicode/char/10af5/index.htm */ MANICHAEAN_PUNCTUATION_TWO_DOTS = 68341, /** * @see https://www.fileformat.info/info/unicode/char/10af6/index.htm */ MANICHAEAN_PUNCTUATION_LINE_FILLER = 68342, /** * @see https://www.fileformat.info/info/unicode/char/10b39/index.htm */ AVESTAN_ABBREVIATION_MARK = 68409, /** * @see https://www.fileformat.info/info/unicode/char/10b3a/index.htm */ TINY_TWO_DOTS_OVER_ONE_DOT_PUNCTUATION = 68410, /** * @see https://www.fileformat.info/info/unicode/char/10b3b/index.htm */ SMALL_TWO_DOTS_OVER_ONE_DOT_PUNCTUATION = 68411, /** * @see https://www.fileformat.info/info/unicode/char/10b3c/index.htm */ LARGE_TWO_DOTS_OVER_ONE_DOT_PUNCTUATION = 68412, /** * @see https://www.fileformat.info/info/unicode/char/10b3d/index.htm */ LARGE_ONE_DOT_OVER_TWO_DOTS_PUNCTUATION = 68413, /** * @see https://www.fileformat.info/info/unicode/char/10b3e/index.htm */ LARGE_TWO_RINGS_OVER_ONE_RING_PUNCTUATION = 68414, /** * @see https://www.fileformat.info/info/unicode/char/10b3f/index.htm */ LARGE_ONE_RING_OVER_TWO_RINGS_PUNCTUATION = 68415, /** * @see https://www.fileformat.info/info/unicode/char/10b99/index.htm */ PSALTER_PAHLAVI_SECTION_MARK = 68505, /** * @see https://www.fileformat.info/info/unicode/char/10b9a/index.htm */ PSALTER_PAHLAVI_TURNED_SECTION_MARK = 68506, /** * @see https://www.fileformat.info/info/unicode/char/10b9b/index.htm */ PSALTER_PAHLAVI_FOUR_DOTS_WITH_CROSS = 68507, /** * @see https://www.fileformat.info/info/unicode/char/10b9c/index.htm */ PSALTER_PAHLAVI_FOUR_DOTS_WITH_DOT = 68508, /** * @see https://www.fileformat.info/info/unicode/char/10ed0/index.htm */ ARABIC_BIBLICAL_END_OF_VERSE = 69328, /** * @see https://www.fileformat.info/info/unicode/char/10f55/index.htm */ SOGDIAN_PUNCTUATION_TWO_VERTICAL_BARS = 69461, /** * @see https://www.fileformat.info/info/unicode/char/10f56/index.htm */ SOGDIAN_PUNCTUATION_TWO_VERTICAL_BARS_WITH_DOTS = 69462, /** * @see https://www.fileformat.info/info/unicode/char/10f57/index.htm */ SOGDIAN_PUNCTUATION_CIRCLE_WITH_DOT = 69463, /** * @see https://www.fileformat.info/info/unicode/char/10f58/index.htm */ SOGDIAN_PUNCTUATION_TWO_CIRCLES_WITH_DOTS = 69464, /** * @see https://www.fileformat.info/info/unicode/char/10f59/index.htm */ SOGDIAN_PUNCTUATION_HALF_CIRCLE_WITH_DOT = 69465, /** * @see https://www.fileformat.info/info/unicode/char/10f86/index.htm */ OLD_UYGHUR_PUNCTUATION_BAR = 69510, /** * @see https://www.fileformat.info/info/unicode/char/10f87/index.htm */ OLD_UYGHUR_PUNCTUATION_TWO_BARS = 69511, /** * @see https://www.fileformat.info/info/unicode/char/10f88/index.htm */ OLD_UYGHUR_PUNCTUATION_TWO_DOTS = 69512, /** * @see https://www.fileformat.info/info/unicode/char/10f89/index.htm */ OLD_UYGHUR_PUNCTUATION_FOUR_DOTS = 69513, /** * @see https://www.fileformat.info/info/unicode/char/11047/index.htm */ BRAHMI_DANDA = 69703, /** * @see https://www.fileformat.info/info/unicode/char/11048/index.htm */ BRAHMI_DOUBLE_DANDA = 69704, /** * @see https://www.fileformat.info/info/unicode/char/11049/index.htm */ BRAHMI_PUNCTUATION_DOT = 69705, /** * @see https://www.fileformat.info/info/unicode/char/1104a/index.htm */ BRAHMI_PUNCTUATION_DOUBLE_DOT = 69706, /** * @see https://www.fileformat.info/info/unicode/char/1104b/index.htm */ BRAHMI_PUNCTUATION_LINE = 69707, /** * @see https://www.fileformat.info/info/unicode/char/1104c/index.htm */ BRAHMI_PUNCTUATION_CRESCENT_BAR = 69708, /** * @see https://www.fileformat.info/info/unicode/char/1104d/index.htm */ BRAHMI_PUNCTUATION_LOTUS = 69709, /** * @see https://www.fileformat.info/info/unicode/char/110bb/index.htm */ KAITHI_ABBREVIATION_SIGN = 69819, /** * @see https://www.fileformat.info/info/unicode/char/110bc/index.htm */ KAITHI_ENUMERATION_SIGN = 69820, /** * @see https://www.fileformat.info/info/unicode/char/110be/index.htm */ KAITHI_SECTION_MARK = 69822, /** * @see https://www.fileformat.info/info/unicode/char/110bf/index.htm */ KAITHI_DOUBLE_SECTION_MARK = 69823, /** * @see https://www.fileformat.info/info/unicode/char/110c0/index.htm */ KAITHI_DANDA = 69824, /** * @see https://www.fileformat.info/info/unicode/char/110c1/index.htm */ KAITHI_DOUBLE_DANDA = 69825, /** * @see https://www.fileformat.info/info/unicode/char/11140/index.htm */ CHAKMA_SECTION_MARK = 69952, /** * @see https://www.fileformat.info/info/unicode/char/11141/index.htm */ CHAKMA_DANDA = 69953, /** * @see https://www.fileformat.info/info/unicode/char/11142/index.htm */ CHAKMA_DOUBLE_DANDA = 69954, /** * @see https://www.fileformat.info/info/unicode/char/11143/index.htm */ CHAKMA_QUESTION_MARK = 69955, /** * @see https://www.fileformat.info/info/unicode/char/11174/index.htm */ MAHAJANI_ABBREVIATION_SIGN = 70004, /** * @see https://www.fileformat.info/info/unicode/char/11175/index.htm */ MAHAJANI_SECTION_MARK = 70005, /** * @see https://www.fileformat.info/info/unicode/char/111c5/index.htm */ SHARADA_DANDA = 70085, /** * @see https://www.fileformat.info/info/unicode/char/111c6/index.htm */ SHARADA_DOUBLE_DANDA = 70086, /** * @see https://www.fileformat.info/info/unicode/char/111c7/index.htm */ SHARADA_ABBREVIATION_SIGN = 70087, /** * @see https://www.fileformat.info/info/unicode/char/111c8/index.htm */ SHARADA_SEPARATOR = 70088, /** * @see https://www.fileformat.info/info/unicode/char/111cd/index.htm */ SHARADA_SUTRA_MARK = 70093, /** * @see https://www.fileformat.info/info/unicode/char/111db/index.htm */ SHARADA_SIGN_SIDDHAM = 70107, /** * @see https://www.fileformat.info/info/unicode/char/111dd/index.htm */ SHARADA_CONTINUATION_SIGN = 70109, /** * @see https://www.fileformat.info/info/unicode/char/111de/index.htm */ SHARADA_SECTION_MARK_1 = 70110, /** * @see https://www.fileformat.info/info/unicode/char/111df/index.htm */ SHARADA_SECTION_MARK_2 = 70111, /** * @see https://www.fileformat.info/info/unicode/char/11238/index.htm */ KHOJKI_DANDA = 70200, /** * @see https://www.fileformat.info/info/unicode/char/11239/index.htm */ KHOJKI_DOUBLE_DANDA = 70201, /** * @see https://www.fileformat.info/info/unicode/char/1123a/index.htm */ KHOJKI_WORD_SEPARATOR = 70202, /** * @see https://www.fileformat.info/info/unicode/char/1123b/index.htm */ KHOJKI_SECTION_MARK = 70203, /** * @see https://www.fileformat.info/info/unicode/char/1123c/index.htm */ KHOJKI_DOUBLE_SECTION_MARK = 70204, /** * @see https://www.fileformat.info/info/unicode/char/1123d/index.htm */ KHOJKI_ABBREVIATION_SIGN = 70205, /** * @see https://www.fileformat.info/info/unicode/char/112a9/index.htm */ MULTANI_SECTION_MARK = 70313, /** * @see https://www.fileformat.info/info/unicode/char/113d4/index.htm */ TULU_TIGALARI_DANDA = 70612, /** * @see https://www.fileformat.info/info/unicode/char/113d5/index.htm */ TULU_TIGALARI_DOUBLE_DANDA = 70613, /** * @see https://www.fileformat.info/info/unicode/char/113d7/index.htm */ TULU_TIGALARI_SIGN_OM_PUSHPIKA = 70615, /** * @see https://www.fileformat.info/info/unicode/char/113d8/index.htm */ TULU_TIGALARI_SIGN_SHRII_PUSHPIKA = 70616, /** * @see https://www.fileformat.info/info/unicode/char/1144b/index.htm */ NEWA_DANDA = 70731, /** * @see https://www.fileformat.info/info/unicode/char/1144c/index.htm */ NEWA_DOUBLE_DANDA = 70732, /** * @see https://www.fileformat.info/info/unicode/char/1144d/index.htm */ NEWA_COMMA = 70733, /** * @see https://www.fileformat.info/info/unicode/char/1144e/index.htm */ NEWA_GAP_FILLER = 70734, /** * @see https://www.fileformat.info/info/unicode/char/1144f/index.htm */ NEWA_ABBREVIATION_SIGN = 70735, /** * @see https://www.fileformat.info/info/unicode/char/1145a/index.htm */ NEWA_DOUBLE_COMMA = 70746, /** * @see https://www.fileformat.info/info/unicode/char/1145b/index.htm */ NEWA_PLACEHOLDER_MARK = 70747, /** * @see https://www.fileformat.info/info/unicode/char/1145d/index.htm */ NEWA_INSERTION_SIGN = 70749, /** * @see https://www.fileformat.info/info/unicode/char/114c6/index.htm */ TIRHUTA_ABBREVIATION_SIGN = 70854, /** * @see https://www.fileformat.info/info/unicode/char/115c1/index.htm */ SIDDHAM_SIGN_SIDDHAM = 71105, /** * @see https://www.fileformat.info/info/unicode/char/115c2/index.htm */ SIDDHAM_DANDA = 71106, /** * @see https://www.fileformat.info/info/unicode/char/115c3/index.htm */ SIDDHAM_DOUBLE_DANDA = 71107, /** * @see https://www.fileformat.info/info/unicode/char/115c4/index.htm */ SIDDHAM_SEPARATOR_DOT = 71108, /** * @see https://www.fileformat.info/info/unicode/char/115c5/index.htm */ SIDDHAM_SEPARATOR_BAR = 71109, /** * @see https://www.fileformat.info/info/unicode/char/115c6/index.htm */ SIDDHAM_REPETITION_MARK_1 = 71110, /** * @see https://www.fileformat.info/info/unicode/char/115c7/index.htm */ SIDDHAM_REPETITION_MARK_2 = 71111, /** * @see https://www.fileformat.info/info/unicode/char/115c8/index.htm */ SIDDHAM_REPETITION_MARK_3 = 71112, /** * @see https://www.fileformat.info/info/unicode/char/115c9/index.htm */ SIDDHAM_END_OF_TEXT_MARK = 71113, /** * @see https://www.fileformat.info/info/unicode/char/115ca/index.htm */ SIDDHAM_SECTION_MARK_WITH_TRIDENT_AND_U_SHAPED_ORNAMENTS = 71114, /** * @see https://www.fileformat.info/info/unicode/char/115cb/index.htm */ SIDDHAM_SECTION_MARK_WITH_TRIDENT_AND_DOTTED_CRESCENTS = 71115, /** * @see https://www.fileformat.info/info/unicode/char/115cc/index.htm */ SIDDHAM_SECTION_MARK_WITH_RAYS_AND_DOTTED_CRESCENTS = 71116, /** * @see https://www.fileformat.info/info/unicode/char/115cd/index.htm */ SIDDHAM_SECTION_MARK_WITH_RAYS_AND_DOTTED_DOUBLE_CRESCENTS = 71117, /** * @see https://www.fileformat.info/info/unicode/char/115ce/index.htm */ SIDDHAM_SECTION_MARK_WITH_RAYS_AND_DOTTED_TRIPLE_CRESCENTS = 71118, /** * @see https://www.fileformat.info/info/unicode/char/115cf/index.htm */ SIDDHAM_SECTION_MARK_DOUBLE_RING = 71119, /** * @see https://www.fileformat.info/info/unicode/char/115d0/index.htm */ SIDDHAM_SECTION_MARK_DOUBLE_RING_WITH_RAYS = 71120, /** * @see https://www.fileformat.info/info/unicode/char/115d1/index.htm */ SIDDHAM_SECTION_MARK_WITH_DOUBLE_CRESCENTS = 71121, /** * @see https://www.fileformat.info/info/unicode/char/115d2/index.htm */ SIDDHAM_SECTION_MARK_WITH_TRIPLE_CRESCENTS = 71122, /** * @see https://www.fileformat.info/info/unicode/char/115d3/index.htm */ SIDDHAM_SECTION_MARK_WITH_QUADRUPLE_CRESCENTS = 71123, /** * @see https://www.fileformat.info/info/unicode/char/115d4/index.htm */ SIDDHAM_SECTION_MARK_WITH_SEPTUPLE_CRESCENTS = 71124, /** * @see https://www.fileformat.info/info/unicode/char/115d5/index.htm */ SIDDHAM_SECTION_MARK_WITH_CIRCLES_AND_RAYS = 71125, /** * @see https://www.fileformat.info/info/unicode/char/115d6/index.htm */ SIDDHAM_SECTION_MARK_WITH_CIRCLES_AND_TWO_ENCLOSURES = 71126, /** * @see https://www.fileformat.info/info/unicode/char/115d7/index.htm */ SIDDHAM_SECTION_MARK_WITH_CIRCLES_AND_FOUR_ENCLOSURES = 71127, /** * @see https://www.fileformat.info/info/unicode/char/11641/index.htm */ MODI_DANDA = 71233, /** * @see https://www.fileformat.info/info/unicode/char/11642/index.htm */ MODI_DOUBLE_DANDA = 71234, /** * @see https://www.fileformat.info/info/unicode/char/11643/index.htm */ MODI_ABBREVIATION_SIGN = 71235, /** * @see https://www.fileformat.info/info/unicode/char/11660/index.htm */ MONGOLIAN_BIRGA_WITH_ORNAMENT = 71264, /** * @see https://www.fileformat.info/info/unicode/char/11661/index.htm */ MONGOLIAN_ROTATED_BIRGA = 71265, /** * @see https://www.fileformat.info/info/unicode/char/11662/index.htm */ MONGOLIAN_DOUBLE_BIRGA_WITH_ORNAMENT = 71266, /** * @see https://www.fileformat.info/info/unicode/char/11663/index.htm */ MONGOLIAN_TRIPLE_BIRGA_WITH_ORNAMENT = 71267, /** * @see https://www.fileformat.info/info/unicode/char/11664/index.htm */ MONGOLIAN_BIRGA_WITH_DOUBLE_ORNAMENT = 71268, /** * @see https://www.fileformat.info/info/unicode/char/11665/index.htm */ MONGOLIAN_ROTATED_BIRGA_WITH_ORNAMENT = 71269, /** * @see https://www.fileformat.info/info/unicode/char/11666/index.htm */ MONGOLIAN_ROTATED_BIRGA_WITH_DOUBLE_ORNAMENT = 71270, /** * @see https://www.fileformat.info/info/unicode/char/11667/index.htm */ MONGOLIAN_INVERTED_BIRGA = 71271, /** * @see https://www.fileformat.info/info/unicode/char/11668/index.htm */ MONGOLIAN_INVERTED_BIRGA_WITH_DOUBLE_ORNAMENT = 71272, /** * @see https://www.fileformat.info/info/unicode/char/11669/index.htm */ MONGOLIAN_SWIRL_BIRGA = 71273, /** * @see https://www.fileformat.info/info/unicode/char/1166a/index.htm */ MONGOLIAN_SWIRL_BIRGA_WITH_ORNAMENT = 71274, /** * @see https://www.fileformat.info/info/unicode/char/1166b/index.htm */ MONGOLIAN_SWIRL_BIRGA_WITH_DOUBLE_ORNAMENT = 71275, /** * @see https://www.fileformat.info/info/unicode/char/1166c/index.htm */ MONGOLIAN_TURNED_SWIRL_BIRGA_WITH_DOUBLE_ORNAMENT = 71276, /** * @see https://www.fileformat.info/info/unicode/char/116b9/index.htm */ TAKRI_ABBREVIATION_SIGN = 71353, /** * @see https://www.fileformat.info/info/unicode/char/1173c/index.htm */ AHOM_SIGN_SMALL_SECTION = 71484, /** * @see https://www.fileformat.info/info/unicode/char/1173d/index.htm */ AHOM_SIGN_SECTION = 71485, /** * @see https://www.fileformat.info/info/unicode/char/1173e/index.htm */ AHOM_SIGN_RULAI = 71486, /** * @see https://www.fileformat.info/info/unicode/char/1183b/index.htm */ DOGRA_ABBREVIATION_SIGN = 71739, /** * @see https://www.fileformat.info/info/unicode/char/11944/index.htm */ DIVES_AKURU_DOUBLE_DANDA = 72004, /** * @see https://www.fileformat.info/info/unicode/char/11945/index.htm */ DIVES_AKURU_GAP_FILLER = 72005, /** * @see https://www.fileformat.info/info/unicode/char/11946/index.htm */ DIVES_AKURU_END_OF_TEXT_MARK = 72006, /** * @see https://www.fileformat.info/info/unicode/char/119e2/index.htm */ NANDINAGARI_SIGN_SIDDHAM = 72162, /** * @see https://www.fileformat.info/info/unicode/char/11a3f/index.htm */ ZANABAZAR_SQUARE_INITIAL_HEAD_MARK = 72255, /** * @see https://www.fileformat.info/info/unicode/char/11a40/index.htm */ ZANABAZAR_SQUARE_CLOSING_HEAD_MARK = 72256, /** * @see https://www.fileformat.info/info/unicode/char/11a41/index.htm */ ZANABAZAR_SQUARE_MARK_TSHEG = 72257, /** * @see https://www.fileformat.info/info/unicode/char/11a42/index.htm */ ZANABAZAR_SQUARE_MARK_SHAD = 72258, /** * @see https://www.fileformat.info/info/unicode/char/11a43/index.htm */ ZANABAZAR_SQUARE_MARK_DOUBLE_SHAD = 72259, /** * @see https://www.fileformat.info/info/unicode/char/11a44/index.htm */ ZANABAZAR_SQUARE_MARK_LONG_TSHEG = 72260, /** * @see https://www.fileformat.info/info/unicode/char/11a45/index.htm */ ZANABAZAR_SQUARE_INITIAL_DOUBLE_LINED_HEAD_MARK = 72261, /** * @see https://www.fileformat.info/info/unicode/char/11a46/index.htm */ ZANABAZAR_SQUARE_CLOSING_DOUBLE_LINED_HEAD_MARK = 72262, /** * @see https://www.fileformat.info/info/unicode/char/11a9a/index.htm */ SOYOMBO_MARK_TSHEG = 72346, /** * @see https://www.fileformat.info/info/unicode/char/11a9b/index.htm */ SOYOMBO_MARK_SHAD = 72347, /** * @see https://www.fileformat.info/info/unicode/char/11a9c/index.htm */ SOYOMBO_MARK_DOUBLE_SHAD = 72348, /** * @see https://www.fileformat.info/info/unicode/char/11a9e/index.htm */ SOYOMBO_HEAD_MARK_WITH_MOON_AND_SUN_AND_TRIPLE_FLAME = 72350, /** * @see https://www.fileformat.info/info/unicode/char/11a9f/index.htm */ SOYOMBO_HEAD_MARK_WITH_MOON_AND_SUN_AND_FLAME = 72351, /** * @see https://www.fileformat.info/info/unicode/char/11aa0/index.htm */ SOYOMBO_HEAD_MARK_WITH_MOON_AND_SUN = 72352, /** * @see https://www.fileformat.info/info/unicode/char/11aa1/index.htm */ SOYOMBO_TERMINAL_MARK_1 = 72353, /** * @see https://www.fileformat.info/info/unicode/char/11aa2/index.htm */ SOYOMBO_TERMINAL_MARK_2 = 72354, /** * @see https://www.fileformat.info/info/unicode/char/11b00/index.htm */ DEVANAGARI_HEAD_MARK = 72448, /** * @see https://www.fileformat.info/info/unicode/char/11b01/index.htm */ DEVANAGARI_HEAD_MARK_WITH_HEADSTROKE = 72449, /** * @see https://www.fileformat.info/info/unicode/char/11b02/index.htm */ DEVANAGARI_SIGN_BHALE = 72450, /** * @see https://www.fileformat.info/info/unicode/char/11b03/index.htm */ DEVANAGARI_SIGN_BHALE_WITH_HOOK = 72451, /** * @see https://www.fileformat.info/info/unicode/char/11b04/index.htm */ DEVANAGARI_SIGN_EXTENDED_BHALE = 72452, /** * @see https://www.fileformat.info/info/unicode/char/11b05/index.htm */ DEVANAGARI_SIGN_EXTENDED_BHALE_WITH_HOOK = 72453, /** * @see https://www.fileformat.info/info/unicode/char/11b06/index.htm */ DEVANAGARI_SIGN_WESTERN_FIVE_LIKE_BHALE = 72454, /** * @see https://www.fileformat.info/info/unicode/char/11b07/index.htm */ DEVANAGARI_SIGN_WESTERN_NINE_LIKE_BHALE = 72455, /** * @see https://www.fileformat.info/info/unicode/char/11b08/index.htm */ DEVANAGARI_SIGN_REVERSED_NINE_LIKE_BHALE = 72456, /** * @see https://www.fileformat.info/info/unicode/char/11b09/index.htm */ DEVANAGARI_SIGN_MINDU = 72457, /** * @see https://www.fileformat.info/info/unicode/char/11be1/index.htm */ SUNUWAR_SIGN_PVO = 72673, /** * @see https://www.fileformat.info/info/unicode/char/11c41/index.htm */ BHAIKSUKI_DANDA = 72769, /** * @see https://www.fileformat.info/info/unicode/char/11c42/index.htm */ BHAIKSUKI_DOUBLE_DANDA = 72770, /** * @see https://www.fileformat.info/info/unicode/char/11c43/index.htm */ BHAIKSUKI_WORD_SEPARATOR = 72771, /** * @see https://www.fileformat.info/info/unicode/char/11c44/index.htm */ BHAIKSUKI_GAP_FILLER_1 = 72772, /** * @see https://www.fileformat.info/info/unicode/char/11c45/index.htm */ BHAIKSUKI_GAP_FILLER_2 = 72773, /** * @see https://www.fileformat.info/info/unicode/char/11c70/index.htm */ MARCHEN_HEAD_MARK = 72816, /** * @see https://www.fileformat.info/info/unicode/char/11c71/index.htm */ MARCHEN_MARK_SHAD = 72817, /** * @see https://www.fileformat.info/info/unicode/char/11ef7/index.htm */ MAKASAR_PASSIMBANG = 73463, /** * @see https://www.fileformat.info/info/unicode/char/11ef8/index.htm */ MAKASAR_END_OF_SECTION = 73464, /** * @see https://www.fileformat.info/info/unicode/char/11f43/index.htm */ KAWI_DANDA = 73539, /** * @see https://www.fileformat.info/info/unicode/char/11f44/index.htm */ KAWI_DOUBLE_DANDA = 73540, /** * @see https://www.fileformat.info/info/unicode/char/11f45/index.htm */ KAWI_PUNCTUATION_SECTION_MARKER = 73541, /** * @see https://www.fileformat.info/info/unicode/char/11f46/index.htm */ KAWI_PUNCTUATION_ALTERNATE_SECTION_MARKER = 73542, /** * @see https://www.fileformat.info/info/unicode/char/11f47/index.htm */ KAWI_PUNCTUATION_FLOWER = 73543, /** * @see https://www.fileformat.info/info/unicode/char/11f48/index.htm */ KAWI_PUNCTUATION_SPACE_FILLER = 73544, /** * @see https://www.fileformat.info/info/unicode/char/11f49/index.htm */ KAWI_PUNCTUATION_DOT = 73545, /** * @see https://www.fileformat.info/info/unicode/char/11f4a/index.htm */ KAWI_PUNCTUATION_DOUBLE_DOT = 73546, /** * @see https://www.fileformat.info/info/unicode/char/11f4b/index.htm */ KAWI_PUNCTUATION_TRIPLE_DOT = 73547, /** * @see https://www.fileformat.info/info/unicode/char/11f4c/index.htm */ KAWI_PUNCTUATION_CIRCLE = 73548, /** * @see https://www.fileformat.info/info/unicode/char/11f4d/index.htm */ KAWI_PUNCTUATION_FILLED_CIRCLE = 73549, /** * @see https://www.fileformat.info/info/unicode/char/11f4e/index.htm */ KAWI_PUNCTUATION_SPIRAL = 73550, /** * @see https://www.fileformat.info/info/unicode/char/11f4f/index.htm */ KAWI_PUNCTUATION_CLOSING_SPIRAL = 73551, /** * @see https://www.fileformat.info/info/unicode/char/11fff/index.htm */ TAMIL_PUNCTUATION_END_OF_TEXT = 73727, /** * @see https://www.fileformat.info/info/unicode/char/12470/index.htm */ CUNEIFORM_PUNCTUATION_SIGN_OLD_ASSYRIAN_WORD_DIVIDER = 74864, /** * @see https://www.fileformat.info/info/unicode/char/12471/index.htm */ CUNEIFORM_PUNCTUATION_SIGN_VERTICAL_COLON = 74865, /** * @see https://www.fileformat.info/info/unicode/char/12472/index.htm */ CUNEIFORM_PUNCTUATION_SIGN_DIAGONAL_COLON = 74866, /** * @see https://www.fileformat.info/info/unicode/char/12473/index.htm */ CUNEIFORM_PUNCTUATION_SIGN_DIAGONAL_TRICOLON = 74867, /** * @see https://www.fileformat.info/info/unicode/char/12474/index.htm */ CUNEIFORM_PUNCTUATION_SIGN_DIAGONAL_QUADCOLON = 74868, /** * @see https://www.fileformat.info/info/unicode/char/12ff1/index.htm */ CYPRO_MINOAN_SIGN_CM301 = 77809, /** * @see https://www.fileformat.info/info/unicode/char/12ff2/index.htm */ CYPRO_MINOAN_SIGN_CM302 = 77810, /** * @see https://www.fileformat.info/info/unicode/char/16a6e/index.htm */ MRO_DANDA = 92782, /** * @see https://www.fileformat.info/info/unicode/char/16a6f/index.htm */ MRO_DOUBLE_DANDA = 92783, /** * @see https://www.fileformat.info/info/unicode/char/16af5/index.htm */ BASSA_VAH_FULL_STOP = 92917, /** * @see https://www.fileformat.info/info/unicode/char/16b37/index.htm */ PAHAWH_HMONG_SIGN_VOS_THOM = 92983, /** * @see https://www.fileformat.info/info/unicode/char/16b38/index.htm */ PAHAWH_HMONG_SIGN_VOS_TSHAB_CEEB = 92984, /** * @see https://www.fileformat.info/info/unicode/char/16b39/index.htm */ PAHAWH_HMONG_SIGN_CIM_CHEEM = 92985, /** * @see https://www.fileformat.info/info/unicode/char/16b3a/index.htm */ PAHAWH_HMONG_SIGN_VOS_THIAB = 92986, /** * @see https://www.fileformat.info/info/unicode/char/16b3b/index.htm */ PAHAWH_HMONG_SIGN_VOS_FEEM = 92987, /** * @see https://www.fileformat.info/info/unicode/char/16b44/index.htm */ PAHAWH_HMONG_SIGN_XAUS = 92996, /** * @see https://www.fileformat.info/info/unicode/char/16d6d/index.htm */ KIRAT_RAI_SIGN_YUPI = 93549, /** * @see https://www.fileformat.info/info/unicode/char/16d6e/index.htm */ KIRAT_RAI_DANDA = 93550, /** * @see https://www.fileformat.info/info/unicode/char/16d6f/index.htm */ KIRAT_RAI_DOUBLE_DANDA = 93551, /** * @see https://www.fileformat.info/info/unicode/char/16e97/index.htm */ MEDEFAIDRIN_COMMA = 93847, /** * @see https://www.fileformat.info/info/unicode/char/16e98/index.htm */ MEDEFAIDRIN_FULL_STOP = 93848, /** * @see https://www.fileformat.info/info/unicode/char/16e99/index.htm */ MEDEFAIDRIN_SYMBOL_AIVA = 93849, /** * @see https://www.fileformat.info/info/unicode/char/16e9a/index.htm */ MEDEFAIDRIN_EXCLAMATION_OH = 93850, /** * @see https://www.fileformat.info/info/unicode/char/16fe2/index.htm */ OLD_CHINESE_HOOK_MARK = 94178, /** * @see https://www.fileformat.info/info/unicode/char/1bc9f/index.htm */ DUPLOYAN_PUNCTUATION_CHINOOK_FULL_STOP = 113823, /** * @see https://www.fileformat.info/info/unicode/char/1da87/index.htm */ SIGNWRITING_COMMA = 121479, /** * @see https://www.fileformat.info/info/unicode/char/1da88/index.htm */ SIGNWRITING_FULL_STOP = 121480, /** * @see https://www.fileformat.info/info/unicode/char/1da89/index.htm */ SIGNWRITING_SEMICOLON = 121481, /** * @see https://www.fileformat.info/info/unicode/char/1da8a/index.htm */ SIGNWRITING_COLON = 121482, /** * @see https://www.fileformat.info/info/unicode/char/1da8b/index.htm */ SIGNWRITING_PARENTHESIS = 121483, /** * @see https://www.fileformat.info/info/unicode/char/1e5ff/index.htm */ OL_ONAL_ABBREVIATION_SIGN = 124415, /** * @see https://www.fileformat.info/info/unicode/char/1e95e/index.htm */ ADLAM_INITIAL_EXCLAMATION_MARK = 125278, /** * @see https://www.fileformat.info/info/unicode/char/1e95f/index.htm */ ADLAM_INITIAL_QUESTION_MARK = 125279 } //#endregion //#region src/constant/unicode/ps.d.ts /** * Unicode Characters in the 'Punctuation, Open' Category * @see https://www.fileformat.info/info/unicode/category/Ps/list.htm */ export declare enum UnicodePsCodePoint { /** * @see https://www.fileformat.info/info/unicode/char/0028/index.htm */ LEFT_PARENTHESIS = 40, /** * @see https://www.fileformat.info/info/unicode/char/005b/index.htm */ LEFT_SQUARE_BRACKET = 91, /** * @see https://www.fileformat.info/info/unicode/char/007b/index.htm */ LEFT_CURLY_BRACKET = 123, /** * @see https://www.fileformat.info/info/unicode/char/0f3a/index.htm */ TIBETAN_MARK_GUG_RTAGS_GYON = 3898, /** * @see https://www.fileformat.info/info/unicode/char/0f3c/index.htm */ TIBETAN_MARK_ANG_KHANG_GYON = 3900, /** * @see https://www.fileformat.info/info/unicode/char/169b/index.htm */ OGHAM_FEATHER_MARK = 5787, /** * @see https://www.fileformat.info/info/unicode/char/201a/index.htm */ SINGLE_LOW_9_QUOTATION_MARK = 8218, /** * @see https://www.fileformat.info/info/unicode/char/201e/index.htm */ DOUBLE_LOW_9_QUOTATION_MARK = 8222, /** * @see https://www.fileformat.info/info/unicode/char/2045/index.htm */ LEFT_SQUARE_BRACKET_WITH_QUILL = 8261, /** * @see https://www.fileformat.info/info/unicode/char/207d/index.htm */ SUPERSCRIPT_LEFT_PARENTHESIS = 8317, /** * @see https://www.fileformat.info/info/unicode/char/208d/index.htm */ SUBSCRIPT_LEFT_PARENTHESIS = 8333, /** * @see https://www.fileformat.info/info/unicode/char/2308/index.htm */ LEFT_CEILING = 8968, /** * @see https://www.fileformat.info/info/unicode/char/230a/index.htm */ LEFT_FLOOR = 8970, /** * @see https://www.fileformat.info/info/unicode/char/2329/index.htm */ LEFT_POINTING_ANGLE_BRACKET = 9001, /** * @see https://www.fileformat.info/info/unicode/char/2768/index.htm */ MEDIUM_LEFT_PARENTHESIS_ORNAMENT = 10088, /** * @see https://www.fileformat.info/info/unicode/char/276a/index.htm */ MEDIUM_FLATTENED_LEFT_PARENTHESIS_ORNAMENT = 10090, /** * @see https://www.fileformat.info/info/unicode/char/276c/index.htm */ MEDIUM_LEFT_POINTING_ANGLE_BRACKET_ORNAMENT = 10092, /** * @see https://www.fileformat.info/info/unicode/char/276e/index.htm */ HEAVY_LEFT_POINTING_ANGLE_QUOTATION_MARK_ORNAMENT = 10094, /** * @see https://www.fileformat.info/info/unicode/char/2770/index.htm */ HEAVY_LEFT_POINTING_ANGLE_BRACKET_ORNAMENT = 10096, /** * @see https://www.fileformat.info/info/unicode/char/2772/index.htm */ LIGHT_LEFT_TORTOISE_SHELL_BRACKET_ORNAMENT = 10098, /** * @see https://www.fileformat.info/info/unicode/char/2774/index.htm */ MEDIUM_LEFT_CURLY_BRACKET_ORNAMENT = 10100, /** * @see https://www.fileformat.info/info/unicode/char/27c5/index.htm */ LEFT_S_SHAPED_BAG_DELIMITER = 10181, /** * @see https://www.fileformat.info/info/unicode/char/27e6/index.htm */ MATHEMATICAL_LEFT_WHITE_SQUARE_BRACKET = 10214, /** * @see https://www.fileformat.info/info/unicode/char/27e8/index.htm */ MATHEMATICAL_LEFT_ANGLE_BRACKET = 10216, /** * @see https://www.fileformat.info/info/unicode/char/27ea/index.htm */ MATHEMATICAL_LEFT_DOUBLE_ANGLE_BRACKET = 10218, /** * @see https://www.fileformat.info/info/unicode/char/27ec/index.htm */ MATHEMATICAL_LEFT_WHITE_TORTOISE_SHELL_BRACKET = 10220, /** * @see https://www.fileformat.info/info/unicode/char/27ee/index.htm */ MATHEMATICAL_LEFT_FLATTENED_PARENTHESIS = 10222, /** * @see https://www.fileformat.info/info/unicode/char/2983/index.htm */ LEFT_WHITE_CURLY_BRACKET = 10627, /** * @see https://www.fileformat.info/info/unicode/char/2985/index.htm */ LEFT_WHITE_PARENTHESIS = 10629, /** * @see https://www.fileformat.info/info/unicode/char/2987/index.htm */ Z_NOTATION_LEFT_IMAGE_BRACKET = 10631, /** * @see https://www.fileformat.info/info/unicode/char/2989/index.htm */ Z_NOTATION_LEFT_BINDING_BRACKET = 10633, /** * @see https://www.fileformat.info/info/unicode/char/298b/index.htm */ LEFT_SQUARE_BRACKET_WITH_UNDERBAR = 10635, /** * @see https://www.fileformat.info/info/unicode/char/298d/index.htm */ LEFT_SQUARE_BRACKET_WITH_TICK_IN_TOP_CORNER = 10637, /** * @see https://www.fileformat.info/info/unicode/char/298f/index.htm */ LEFT_SQUARE_BRACKET_WITH_TICK_IN_BOTTOM_CORNER = 10639, /** * @see https://www.fileformat.info/info/unicode/char/2991/index.htm */ LEFT_ANGLE_BRACKET_WITH_DOT = 10641, /** * @see https://www.fileformat.info/info/unicode/char/2993/index.htm */ LEFT_ARC_LESS_THAN_BRACKET = 10643, /** * @see https://www.fileformat.info/info/unicode/char/2995/index.htm */ DOUBLE_LEFT_ARC_GREATER_THAN_BRACKET = 10645, /** * @see https://www.fileformat.info/info/unicode/char/2997/index.htm */ LEFT_BLACK_TORTOISE_SHELL_BRACKET = 10647, /** * @see https://www.fileformat.info/info/unicode/char/29d8/index.htm */ LEFT_WIGGLY_FENCE = 10712, /** * @see https://www.fileformat.info/info/unicode/char/29da/index.htm */ LEFT_DOUBLE_WIGGLY_FENCE = 10714, /** * @see https://www.fileformat.info/info/unicode/char/29fc/index.htm */ LEFT_POINTING_CURVED_ANGLE_BRACKET = 10748, /** * @see https://www.fileformat.info/info/unicode/char/2e22/index.htm */ TOP_LEFT_HALF_BRACKET = 11810, /** * @see https://www.fileformat.info/info/unicode/char/2e24/index.htm */ BOTTOM_LEFT_HALF_BRACKET = 11812, /** * @see https://www.fileformat.info/info/unicode/char/2e26/index.htm */ LEFT_SIDEWAYS_U_BRACKET = 11814, /** * @see https://www.fileformat.info/info/unicode/char/2e28/index.htm */ LEFT_DOUBLE_PARENTHESIS = 11816, /** * @see https://www.fileformat.info/info/unicode/char/2e42/index.htm */ DOUBLE_LOW_REVERSED_9_QUOTATION_MARK = 11842, /** * @see https://www.fileformat.info/info/unicode/char/2e55/index.htm */ LEFT_SQUARE_BRACKET_WITH_STROKE = 11861, /** * @see https://www.fileformat.info/info/unicode/char/2e57/index.htm */ LEFT_SQUARE_BRACKET_WITH_DOUBLE_STROKE = 11863, /** * @see https://www.fileformat.info/info/unicode/char/2e59/index.htm */ TOP_HALF_LEFT_PARENTHESIS = 11865, /** * @see https://www.fileformat.info/info/unicode/char/2e5b/index.htm */ BOTTOM_HALF_LEFT_PARENTHESIS = 11867, /** * @see https://www.fileformat.info/info/unicode/char/3008/index.htm */ LEFT_ANGLE_BRACKET = 12296, /** * @see https://www.fileformat.info/info/unicode/char/300a/index.htm */ LEFT_DOUBLE_ANGLE_BRACKET = 12298, /** * @see https://www.fileformat.info/info/unicode/char/300c/index.htm */ LEFT_CORNER_BRACKET = 12300, /** * @see https://www.fileformat.info/info/unicode/char/300e/index.htm */ LEFT_WHITE_CORNER_BRACKET = 12302, /** * @see https://www.fileformat.info/info/unicode/char/3010/index.htm */ LEFT_BLACK_LENTICULAR_BRACKET = 12304, /** * @see https://www.fileformat.info/info/unicode/char/3014/index.htm */ LEFT_TORTOISE_SHELL_BRACKET = 12308, /** * @see https://www.fileformat.info/info/unicode/char/3016/index.htm */ LEFT_WHITE_LENTICULAR_BRACKET = 12310, /** * @see https://www.fileformat.info/info/unicode/char/3018/index.htm */ LEFT_WHITE_TORTOISE_SHELL_BRACKET = 12312, /** * @see https://www.fileformat.info/info/unicode/char/301a/index.htm */ LEFT_WHITE_SQUARE_BRACKET = 12314, /** * @see https://www.fileformat.info/info/unicode/char/301d/index.htm */ REVERSED_DOUBLE_PRIME_QUOTATION_MARK = 12317, /** * @see https://www.fileformat.info/info/unicode/char/fd3f/index.htm */ ORNATE_RIGHT_PARENTHESIS = 64831, /** * @see https://www.fileformat.info/info/unicode/char/fe17/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_WHITE_LENTICULAR_BRACKET = 65047, /** * @see https://www.fileformat.info/info/unicode/char/fe35/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_PARENTHESIS = 65077, /** * @see https://www.fileformat.info/info/unicode/char/fe37/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_CURLY_BRACKET = 65079, /** * @see https://www.fileformat.info/info/unicode/char/fe39/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_TORTOISE_SHELL_BRACKET = 65081, /** * @see https://www.fileformat.info/info/unicode/char/fe3b/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_BLACK_LENTICULAR_BRACKET = 65083, /** * @see https://www.fileformat.info/info/unicode/char/fe3d/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_DOUBLE_ANGLE_BRACKET = 65085, /** * @see https://www.fileformat.info/info/unicode/char/fe3f/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_ANGLE_BRACKET = 65087, /** * @see https://www.fileformat.info/info/unicode/char/fe41/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_CORNER_BRACKET = 65089, /** * @see https://www.fileformat.info/info/unicode/char/fe43/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_WHITE_CORNER_BRACKET = 65091, /** * @see https://www.fileformat.info/info/unicode/char/fe47/index.htm */ PRESENTATION_FORM_FOR_VERTICAL_LEFT_SQUARE_BRACKET = 65095, /** * @see https://www.fileformat.info/info/unicode/char/fe59/index.htm */ SMALL_LEFT_PARENTHESIS = 65113, /** * @see https://www.fileformat.info/info/unicode/char/fe5b/index.htm */ SMALL_LEFT_CURLY_BRACKET = 65115, /** * @see https://www.fileformat.info/info/unicode/char/fe5d/index.htm */ SMALL_LEFT_TORTOISE_SHELL_BRACKET = 65117, /** * @see https://www.fileformat.info/info/unicode/char/ff08/index.htm */ FULLWIDTH_LEFT_PARENTHESIS = 65288, /** * @see https://www.fileformat.info/info/unicode/char/ff3b/index.htm */ FULLWIDTH_LEFT_SQUARE_BRACKET = 65339, /** * @see https://www.fileformat.info/info/unicode/char/ff5b/index.htm */ FULLWIDTH_LEFT_CURLY_BRACKET = 65371, /** * @see https://www.fileformat.info/info/unicode/char/ff5f/index.htm */ FULLWIDTH_LEFT_WHITE_PARENTHESIS = 65375, /** * @see https://www.fileformat.info/info/unicode/char/ff62/index.htm */ HALFWIDTH_LEFT_CORNER_BRACKET = 65378 } //#endregion //#region src/constant/unicode/zs.d.ts /** * Unicode Characters in the 'Separator, Space' Category * @see http://www.fileformat.info/info/unicode/category/Zs/list.htm */ export declare enum UnicodeZsCodePoint { /** * @see http://www.fileformat.info/info/unicode/char/0020/index.htm */ SPACE = 32, /** * @see http://www.fileformat.info/info/unicode/char/00a0/index.htm */ NO_BREAK_SPACE = 160, /** * @see http://www.fileformat.info/info/unicode/char/1680/index.htm */ OGHAM_SPACE_MARK = 5760, /** * @see http://www.fileformat.info/info/unicode/char/2000/index.htm */ EN_QUAD = 8192, /** * @see http://www.fileformat.info/info/unicode/char/2001/index.htm */ EM_QUAD = 8193, /** * @see http://www.fileformat.info/info/unicode/char/2002/index.htm */ EN_SPACE = 8194, /** * @see http://www.fileformat.info/info/unicode/char/2003/index.htm */ EM_SPACE = 8195, /** * @see http://www.fileformat.info/info/unicode/char/2004/index.htm */ THREE_PER_EM_SPACE = 8196, /** * @see http://www.fileformat.info/info/unicode/char/2005/index.htm */ FOUR_PER_EM_SPACE = 8197, /** * @see http://www.fileformat.info/info/unicode/char/2006/index.htm */ SIX_PER_EM_SPACE = 8198, /** * @see http://www.fileformat.info/info/unicode/char/2007/index.htm */ FIGURE_SPACE = 8199, /** * @see http://www.fileformat.info/info/unicode/char/2008/index.htm */ PUNCTUATION_SPACE = 8200, /** * @see http://www.fileformat.info/info/unicode/char/2009/index.htm */ THIN_SPACE = 8201, /** * @see http://www.fileformat.info/info/unicode/char/200a/index.htm */ HAIR_SPACE = 8202, /** * @see http://www.fileformat.info/info/unicode/char/202f/index.htm */ NARROW_NO_BREAK_SPACE = 8239, /** * @see http://www.fileformat.info/info/unicode/char/205f/index.htm */ MEDIUM_MATHEMATICAL_SPACE = 8287, /** * @see http://www.fileformat.info/info/unicode/char/3000/index.htm */ IDEOGRAPHIC_SPACE = 12288 } //#endregion //#region src/constant/virtual.d.ts /** * Virtual code point for special code points. */ export declare enum VirtualCodePoint { /** * Represent a line end. * @see https://github.github.com/gfm/#line-ending */ LINE_END = -1, /** * Represent one of expansion spaces of a tab. * @see https://github.github.com/gfm/#tabs */ SPACE = -2 } //#endregion //#region src/types.d.ts /** * Code point. */ export type ICodePoint = number; /** * One place in the source file. * @see https://github.com/syntax-tree/unist#point */ export interface INodePoint { /** * Line in a source file. * @minimum 1 */ readonly line: number; /** * Column column in a source file. * @minimum 1 */ readonly column: number; /** * Character in a source file. * @minimum 0 */ readonly offset: number; /** * Unicode code point of content (`String.codePointAt()`) */ readonly codePoint: ICodePoint; /** * Number of UTF-16 code units occupied by the normalized source character. * Present only when it differs from the width implied by `codePoint`; * currently only a CRLF line ending (two units, one virtual point) sets it. */ readonly sourceWidth?: number; } /** * A interval represent a position range of the source content. */ export interface INodeInterval { /** * Start index of interval in nodePoints. */ startIndex: number; /** * End index of interval in nodePoints. */ endIndex: number; } //#endregion //#region src/util/searcher.d.ts /** * Check whether a character code point exists in the give code points */ export type CodePointSearcher = (codePoint: ICodePoint) => boolean; /** * Create a searcher to determine whether a character code point exists * in the given list of character code point. * * @param codePoints code points */ export declare function createCodePointSearcher(codePoints: readonly ICodePoint[]): [CodePointSearcher, ICodePoint[]]; /** * Collect code points from CodePoint enum. * * @param _enum */ export declare function collectCodePointsFromEnum(_enum: Record): number[]; //#endregion //#region src/util/character.d.ts /** * Determine if a character is a ASCII Whitespace Character * * A whitespace character is a space (U+0020), tab (U+0009), newline (U+000A), * line tabulation (U+000B), form feed (U+000C), or carriage return (U+000D) * @see https://github.github.com/gfm/#whitespace-character */ export declare const isWhitespaceCharacter: CodePointSearcher, whitespaceCharacters: number[]; /** * Determine if a character is a space * * A space is U+0020 * @see https://github.github.com/gfm/#space */ export declare const spaceCharacters: (AsciiCodePoint | VirtualCodePoint)[]; export declare const isSpaceCharacter: (codePoint: ICodePoint) => boolean; /** * Determine if a character is a line end. * @see https://github.github.com/gfm/#line-ending */ export declare const isLineEnding: (codePoint: ICodePoint) => boolean; /** * Determine if a character is a Punctuation Character * * A punctuation character is an ASCII punctuation character or anything in the * general Unicode categories Pc, Pd, Pe, Pf, Pi, Po, or Ps. * The static category tables are pinned to Unicode 17.0 so classification is * deterministic across supported Node.js versions. * @see https://github.github.com/gfm/#punctuation-character * @see https://www.unicode.org/versions/Unicode17.0.0/ */ export declare const isPunctuationCharacter: CodePointSearcher, punctuationCharacters: number[]; /** * Determine if a character is a Control Character */ export declare const controlCharacters: number[]; export declare const isControlCharacter: CodePointSearcher; /** * Line endings are treated like spaces * @see https://github.github.com/gfm/#example-345 * @see https://github.github.com/gfm/#example-346 */ export declare const isSpaceLike: (c: ICodePoint) => boolean; //#endregion //#region src/util/charset/ascii.d.ts /** * Determine if a character is a ASCII Whitespace Character * * A whitespace character is a space (U+0020), tab (U+0009), newline (U+000A), * line tabulation (U+000B), form feed (U+000C), or carriage return (U+000D) * @see https://github.github.com/gfm/#whitespace-character */ export declare const isAsciiWhitespaceCharacter: CodePointSearcher, asciiWhitespaceCharacters: number[]; /** * Determine if a character is a ASCII Punctuation Character * * An ASCII punctuation character is * - '!', '"', '#', '$', '%', '&', '\'', '(', ')', '*', '+', ',', '-', '.', '/' (U+0021–002F), * - ':', ';', '<', '=', '>', '?', '@' (U+003A–0040), * - '[', '\\', ']', '^', '_', '`' (U+005B–0060), * - '{', '|', '}', or '~' (U+007B–007E). * @see https://github.github.com/gfm/#ascii-punctuation-character */ export declare const isAsciiPunctuationCharacter: CodePointSearcher, asciiPunctuationCharacters: number[]; /** * Test if a code point is an ascii number character. */ export declare const isAsciiDigitCharacter: (codePoint: ICodePoint) => boolean; /** * Test if a code point is an ascii lowercase letter. * * @param codePoint */ export declare const isAsciiLowerLetter: (codePoint: ICodePoint) => boolean; /** * Test if a code point is an ascii uppercase letter. * * @param codePoint */ export declare const isAsciiUpperLetter: (codePoint: ICodePoint) => boolean; /** * Test if a code point is an ascii letter. * * @param codePoint */ export declare const isAsciiLetter: (codePoint: ICodePoint) => boolean; /** * Test if a code point is an alphanumeric character. * * @param codePoint */ export declare const isAlphanumeric: (codePoint: ICodePoint) => boolean; /** * Test if a code point is an ascii character. * * @param codePoint */ export declare const isAsciiCharacter: (codePoint: ICodePoint) => boolean; /** * ASCII control characters are characters encoded between the * range [0x00,0x1F] and [0x7F, 0x7F] */ export declare const isAsciiControlCharacter: CodePointSearcher, asciiControlCharacters: number[]; //#endregion //#region src/util/charset/unicode.d.ts /** * Determine if a character is a Unicode Whitespace Character * * A Unicode whitespace character is any code point in the Unicode Zs general * category, or a tab (U+0009), carriage return (U+000D), newline (U+000A), * or form feed (U+000C). * @see https://github.github.com/gfm/#unicode-whitespace-character * @see http://www.fileformat.info/info/unicode/category/Zs/list.htm */ export declare const isUnicodeWhitespaceCharacter: CodePointSearcher, unicodeWhitespaceCharacters: number[]; //#endregion //#region src/util/entity-reference.d.ts /** * Entity references consist of '&' + any of the valid HTML5 entity names + ';'. * The document https://html.spec.whatwg.org/multipage/entities.json is used as * an authoritative source for the valid entity references and their * corresponding code points * @see https://github.github.com/gfm/#entity-references */ export interface IEntityReference { /** * The end index of the matched entity reference. */ nextIndex: number; /** * Literal string of the entity reference. */ value: string; } /** * Entity reference trie (the first character '&' is omitted). */ export interface EntityReferenceTrie { /** * Search a valid entity (nodePoints.slice(startIndex,endIndex)) from the * trie (the first character '&' is omitted). * @param nodePoints * @param startIndex * @param endIndex */ search(nodePoints: readonly Pick[], startIndex: number, endIndex: number): IEntityReference | null; /** * Insert a entity reference into the trie (the first character '&' is omitted). * @param keys * @param value */ insert(keys: ICodePoint[], value: string): void; } /** * Create entity trie. */ export declare function createEntityReferenceTrie(): EntityReferenceTrie; /** * Default entity reference trie. */ export declare const entityReferenceTrie: EntityReferenceTrie; /** * Eating an entity reference. * * @param nodePoints * @param startIndex * @param endIndex */ export declare function eatEntityReference(nodePoints: readonly Pick[], startIndex: number, endIndex: number): IEntityReference | null; //#endregion //#region src/util/fold-case.d.ts /** * Perform unicode case folding. * @param text * @returns */ export declare function foldCase(text: string): string; //#endregion //#region src/util/han.d.ts /** * Remove line end between two chinese characters. * * Examples: * * `这是一个中文\n句子` ==> `这是一个中文句子` * * `行内的 空格不会 被\n删除` ==> `行内的 空格不会 被删除` * * * @see https://stackoverflow.com/a/21113538/14797950 * @see https://stackoverflow.com/a/61151122/14797950 */ export declare const stripChineseCharacters: (value: string) => string; /** * Remove any white-spaces between two chinese characters. * * Examples: * * `这是一个中文\n句子` ==> `这是一个中文句子` * * `行内的 空格也会 被\n删除` ==> `行内的空格也会被删除` * * * @see https://stackoverflow.com/a/21113538/14797950 * @see https://stackoverflow.com/a/61151122/14797950 */ export declare const tightenChineseCharacters: (value: string) => string; //#endregion //#region src/util/node-point.d.ts /** * Create a generator to processing string stream. */ export declare function createNodePointGenerator(literalStrings: Iterable | string): Iterable & Iterator; /** * Create a string from nodePoints. * @param nodePoints * @param startIndex * @param endIndex * @param trim */ export declare function calcStringFromNodePoints(nodePoints: readonly INodePoint[], startIndex?: number, endIndex?: number, trim?: boolean): string; /** * Create a string from nodePoints and escape backslashes. * @param nodePoints * @param startIndex * @param endIndex * @see https://github.github.com/gfm/#backslash-escapes */ export declare function calcEscapedStringFromNodePoints(nodePoints: readonly INodePoint[], startIndex?: number, endIndex?: number, trim?: boolean): string; /** * Calc trim boundary. * @param nodePoints * @param startIndex * @param endIndex */ export declare function calcTrimBoundaryOfCodePoints(nodePoints: readonly INodePoint[], startIndex?: number, endIndex?: number): [number, number]; //#endregion export {};