A327894 Unicode codes for digit characters in the Basic Multilingual Plane (BMP).
48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2534
Offset: 1
Examples
The following digits zero are encoded in the BMP (excluding Private Use Area). U+0030 (48) [ISO-LATIN-1] Digit Zero U+0660 (1632) Arabic-Indic Digit Zero U+06F0 (1776) Extended Arabic-Indic Digit Zero U+07C0 (1984) Nko Digit Zero U+0966 (2406) Devanagari Digit Zero U+09E6 (2534) Bengali Digit Zero U+0A66 (2662) Gurmukhi Digit Zero U+0AE6 (2790) Gujarati Digit Zero U+0B66 (2918) Oriya Digit Zero U+0BE6 (3046) Tamil Digit Zero U+0C66 (3174) Telugu Digit Zero U+0CE6 (3302) Kannada Digit Zero U+0D66 (3430) Malayalam Digit Zero U+0E50 (3664) Thai Digit Zero U+0ED0 (3792) Lao Digit Zero U+0F20 (3872) Tibetan Digit Zero U+1040 (4160) Myanmar Digit Zero U+1090 (4240) Myanmar Shan Digit Zero U+17E0 (6112) Khmer Digit Zero U+1810 (6160) Mongolian Digit Zero U+1946 (6470) Limbu Digit Zero U+19D0 (6608) New Tai Lue Digit Zero U+1A80 (6784) Tai Tham Hora Digit Zero U+1A90 (6800) Tai Tham Tham Digit Zero U+1B50 (6992) Balinese Digit Zero U+1BB0 (7088) Sundanese Digit Zero U+1C40 (7232) Lepcha Digit Zero U+1C50 (7248) Ol Chiki Digit Zero U+A620 (42528) Vai Digit Zero U+A8D0 (43216) Saurashtra Digit Zero U+A900 (43264) Kayah Li Digit Zero U+A9D0 (43472) Javanese Digit Zero U+AA50 (43600) Cham Digit Zero U+ABF0 (44016) Meetei Mayek Digit Zero U+FF10 (65296) Fullwidth Digit Zero Although U+3007, Ideographic Number Zero, from the CJK Symbols & Punctuation block, does have an associated numeric value of 0, it returns false for isDigit(). Thus 12295 is not included in this sequence.
Links
- Conscript, Klingon: U+F8D0 - U+F8FF.
- Oracle Corporation, Javadoc for Character.isDigit(). isDigit() "determines if the specified character is a digit. ... Note: This method cannot handle supplementary characters. To support all Unicode characters, including supplementary characters, use the isDigit(int) method" instead.
Programs
-
Scala
(0 to 65535).filter(_.toChar.isDigit)
Comments