List of Unicode alphabetic characters

后端 未结 4 1706
暖寄归人
暖寄归人 2020-12-18 07:40

I need the list of ranges of Unicode characters with the property Alphabetic as defined in http://www.unicode.org/Public/5.1.0/ucd/UCD.html#Alphabetic. However,

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-18 08:31

    Derived Core Properties can be calculated from the other properties.

    The Alphabetic property is defined as: Generated from: Lu + Ll + Lt + Lm + Lo + Nl + Other_Alphabetic

    So, if you take all the characters in Lu, Ll, Lt, Lm, Lo, Nl, and all the characters with the Other_Alphabetic property, you will have the Alphabetic characters.

提交回复
热议问题