regexp_property_values 0.3.5-java → 1.0.0-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.description = 'This small library lets you see which property values '\
13
13
  'are supported by the regular expression engine of the '\
14
14
  'Ruby version you are running, and what they match.'
15
- s.homepage = 'https://github.com/janosch-x/regexp_property_values'
15
+ s.homepage = 'https://github.com/jaynetics/regexp_property_values'
16
16
  s.license = 'MIT'
17
17
 
18
18
  s.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -24,9 +24,9 @@ Gem::Specification.new do |s|
24
24
 
25
25
  s.required_ruby_version = '>= 2.0.0'
26
26
 
27
- s.add_development_dependency 'bundler', '~> 1.16'
28
- s.add_development_dependency 'character_set', '~> 1.0.0'
29
- s.add_development_dependency 'rake', '~> 10.0'
27
+ s.add_development_dependency 'character_set', '~> 1.4.0'
28
+ s.add_development_dependency 'rake', '~> 12.0'
30
29
  s.add_development_dependency 'rake-compiler', '~> 1.0'
30
+ s.add_development_dependency 'range_compressor', '~> 1.0'
31
31
  s.add_development_dependency 'rspec', '~> 3.0'
32
32
  end
metadata CHANGED
@@ -1,59 +1,59 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: regexp_property_values
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 1.0.0
5
5
  platform: java
6
6
  authors:
7
7
  - Janosch Müller
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-02 00:00:00.000000000 Z
11
+ date: 2019-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
14
+ name: character_set
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.16'
19
+ version: 1.4.0
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.16'
26
+ version: 1.4.0
27
27
  - !ruby/object:Gem::Dependency
28
- name: character_set
28
+ name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.0.0
33
+ version: '12.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 1.0.0
40
+ version: '12.0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rake
42
+ name: rake-compiler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '10.0'
47
+ version: '1.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '10.0'
54
+ version: '1.0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: rake-compiler
56
+ name: range_compressor
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: range_compressor
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.0'
83
97
  description: This small library lets you see which property values are supported by
84
98
  the regular expression engine of the Ruby version you are running, and what they
85
99
  match.
@@ -92,6 +106,7 @@ files:
92
106
  - ".gitignore"
93
107
  - ".rspec"
94
108
  - ".travis.yml"
109
+ - CHANGELOG.md
95
110
  - Gemfile
96
111
  - LICENSE.txt
97
112
  - README.md
@@ -100,12 +115,17 @@ files:
100
115
  - bin/setup
101
116
  - ext/regexp_property_values/extconf.rb
102
117
  - ext/regexp_property_values/regexp_property_values.c
103
- - lib/UnicodeProps.txt
118
+ - lib/aliases
104
119
  - lib/regexp_property_values.rb
105
- - lib/regexp_property_values/extension.rb
120
+ - lib/regexp_property_values/updater.rb
121
+ - lib/regexp_property_values/value.rb
122
+ - lib/regexp_property_values/value/ext_adapter.rb
123
+ - lib/regexp_property_values/value/ruby_fallback.rb
124
+ - lib/regexp_property_values/value/shared_methods.rb
106
125
  - lib/regexp_property_values/version.rb
126
+ - lib/values
107
127
  - regexp_property_values.gemspec
108
- homepage: https://github.com/janosch-x/regexp_property_values
128
+ homepage: https://github.com/jaynetics/regexp_property_values
109
129
  licenses:
110
130
  - MIT
111
131
  metadata: {}
@@ -124,8 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
144
  - !ruby/object:Gem::Version
125
145
  version: '0'
126
146
  requirements: []
127
- rubyforge_project:
128
- rubygems_version: 2.7.6
147
+ rubygems_version: 3.0.3
129
148
  signing_key:
130
149
  specification_version: 4
131
150
  summary: Inspect property values supported by Ruby's regex engine
data/lib/UnicodeProps.txt DELETED
@@ -1,828 +0,0 @@
1
- Onigmo (Oniguruma-mod) Unicode Properties Version 6.2.0 2019/01/24
2
-
3
- * POSIX brackets
4
- Alpha
5
- Blank
6
- Cntrl
7
- Digit
8
- Graph
9
- Lower
10
- Print
11
- Punct
12
- Space
13
- Upper
14
- XDigit
15
- Word
16
- Alnum
17
- ASCII
18
- XPosixPunct
19
-
20
- * Special
21
- Any
22
- Assigned
23
-
24
- * Major and General Categories
25
- C
26
- Cc
27
- Cf
28
- Cn
29
- Co
30
- Cs
31
- L
32
- LC
33
- Ll
34
- Lm
35
- Lo
36
- Lt
37
- Lu
38
- M
39
- Mc
40
- Me
41
- Mn
42
- N
43
- Nd
44
- Nl
45
- No
46
- P
47
- Pc
48
- Pd
49
- Pe
50
- Pf
51
- Pi
52
- Po
53
- Ps
54
- S
55
- Sc
56
- Sk
57
- Sm
58
- So
59
- Z
60
- Zl
61
- Zp
62
- Zs
63
-
64
- * Scripts
65
- Adlam
66
- Ahom
67
- Anatolian_Hieroglyphs
68
- Arabic
69
- Armenian
70
- Avestan
71
- Balinese
72
- Bamum
73
- Bassa_Vah
74
- Batak
75
- Bengali
76
- Bhaiksuki
77
- Bopomofo
78
- Brahmi
79
- Braille
80
- Buginese
81
- Buhid
82
- Canadian_Aboriginal
83
- Carian
84
- Caucasian_Albanian
85
- Chakma
86
- Cham
87
- Cherokee
88
- Common
89
- Coptic
90
- Cuneiform
91
- Cypriot
92
- Cyrillic
93
- Deseret
94
- Devanagari
95
- Dogra
96
- Duployan
97
- Egyptian_Hieroglyphs
98
- Elbasan
99
- Ethiopic
100
- Georgian
101
- Glagolitic
102
- Gothic
103
- Grantha
104
- Greek
105
- Gujarati
106
- Gunjala_Gondi
107
- Gurmukhi
108
- Han
109
- Hangul
110
- Hanifi_Rohingya
111
- Hanunoo
112
- Hatran
113
- Hebrew
114
- Hiragana
115
- Imperial_Aramaic
116
- Inherited
117
- Inscriptional_Pahlavi
118
- Inscriptional_Parthian
119
- Javanese
120
- Kaithi
121
- Kannada
122
- Katakana
123
- Kayah_Li
124
- Kharoshthi
125
- Khmer
126
- Khojki
127
- Khudawadi
128
- Lao
129
- Latin
130
- Lepcha
131
- Limbu
132
- Linear_A
133
- Linear_B
134
- Lisu
135
- Lycian
136
- Lydian
137
- Mahajani
138
- Makasar
139
- Malayalam
140
- Mandaic
141
- Manichaean
142
- Marchen
143
- Masaram_Gondi
144
- Medefaidrin
145
- Meetei_Mayek
146
- Mende_Kikakui
147
- Meroitic_Cursive
148
- Meroitic_Hieroglyphs
149
- Miao
150
- Modi
151
- Mongolian
152
- Mro
153
- Multani
154
- Myanmar
155
- Nabataean
156
- New_Tai_Lue
157
- Newa
158
- Nko
159
- Nushu
160
- Ogham
161
- Ol_Chiki
162
- Old_Hungarian
163
- Old_Italic
164
- Old_North_Arabian
165
- Old_Permic
166
- Old_Persian
167
- Old_Sogdian
168
- Old_South_Arabian
169
- Old_Turkic
170
- Oriya
171
- Osage
172
- Osmanya
173
- Pahawh_Hmong
174
- Palmyrene
175
- Pau_Cin_Hau
176
- Phags_Pa
177
- Phoenician
178
- Psalter_Pahlavi
179
- Rejang
180
- Runic
181
- Samaritan
182
- Saurashtra
183
- Sharada
184
- Shavian
185
- Siddham
186
- SignWriting
187
- Sinhala
188
- Sogdian
189
- Sora_Sompeng
190
- Soyombo
191
- Sundanese
192
- Syloti_Nagri
193
- Syriac
194
- Tagalog
195
- Tagbanwa
196
- Tai_Le
197
- Tai_Tham
198
- Tai_Viet
199
- Takri
200
- Tamil
201
- Tangut
202
- Telugu
203
- Thaana
204
- Thai
205
- Tibetan
206
- Tifinagh
207
- Tirhuta
208
- Ugaritic
209
- Unknown
210
- Vai
211
- Warang_Citi
212
- Yi
213
- Zanabazar_Square
214
-
215
- * DerivedCoreProperties
216
- Alphabetic
217
- Case_Ignorable
218
- Cased
219
- Changes_When_Casefolded
220
- Changes_When_Casemapped
221
- Changes_When_Lowercased
222
- Changes_When_Titlecased
223
- Changes_When_Uppercased
224
- Default_Ignorable_Code_Point
225
- Grapheme_Base
226
- Grapheme_Extend
227
- Grapheme_Link
228
- ID_Continue
229
- ID_Start
230
- Lowercase
231
- Math
232
- Uppercase
233
- XID_Continue
234
- XID_Start
235
-
236
- * PropList
237
- ASCII_Hex_Digit
238
- Bidi_Control
239
- Dash
240
- Deprecated
241
- Diacritic
242
- Extender
243
- Hex_Digit
244
- Hyphen
245
- IDS_Binary_Operator
246
- IDS_Trinary_Operator
247
- Ideographic
248
- Join_Control
249
- Logical_Order_Exception
250
- Noncharacter_Code_Point
251
- Other_Alphabetic
252
- Other_Default_Ignorable_Code_Point
253
- Other_Grapheme_Extend
254
- Other_ID_Continue
255
- Other_ID_Start
256
- Other_Lowercase
257
- Other_Math
258
- Other_Uppercase
259
- Pattern_Syntax
260
- Pattern_White_Space
261
- Prepended_Concatenation_Mark
262
- Quotation_Mark
263
- Radical
264
- Regional_Indicator
265
- Sentence_Terminal
266
- Soft_Dotted
267
- Terminal_Punctuation
268
- Unified_Ideograph
269
- Variation_Selector
270
- White_Space
271
-
272
- * Emoji
273
- Emoji
274
- Emoji_Component
275
- Emoji_Modifier
276
- Emoji_Modifier_Base
277
- Emoji_Presentation
278
-
279
- * PropertyAliases
280
- AHex
281
- Bidi_C
282
- CI
283
- CWCF
284
- CWCM
285
- CWL
286
- CWT
287
- CWU
288
- DI
289
- Dep
290
- Dia
291
- Ext
292
- Gr_Base
293
- Gr_Ext
294
- Gr_Link
295
- Hex
296
- IDC
297
- IDS
298
- IDSB
299
- IDST
300
- Ideo
301
- Join_C
302
- LOE
303
- NChar
304
- OAlpha
305
- ODI
306
- OGr_Ext
307
- OIDC
308
- OIDS
309
- OLower
310
- OMath
311
- OUpper
312
- PCM
313
- Pat_Syn
314
- Pat_WS
315
- QMark
316
- RI
317
- SD
318
- STerm
319
- Term
320
- UIdeo
321
- VS
322
- WSpace
323
- XIDC
324
- XIDS
325
-
326
- * PropertyValueAliases (General_Category)
327
- Other
328
- Control
329
- Format
330
- Unassigned
331
- Private_Use
332
- Surrogate
333
- Letter
334
- Cased_Letter
335
- Lowercase_Letter
336
- Modifier_Letter
337
- Other_Letter
338
- Titlecase_Letter
339
- Uppercase_Letter
340
- Mark
341
- Combining_Mark
342
- Spacing_Mark
343
- Enclosing_Mark
344
- Nonspacing_Mark
345
- Number
346
- Decimal_Number
347
- Letter_Number
348
- Other_Number
349
- Punctuation
350
- Connector_Punctuation
351
- Dash_Punctuation
352
- Close_Punctuation
353
- Final_Punctuation
354
- Initial_Punctuation
355
- Other_Punctuation
356
- Open_Punctuation
357
- Symbol
358
- Currency_Symbol
359
- Modifier_Symbol
360
- Math_Symbol
361
- Other_Symbol
362
- Separator
363
- Line_Separator
364
- Paragraph_Separator
365
- Space_Separator
366
-
367
- * PropertyValueAliases (Script)
368
- Adlm
369
- Aghb
370
- Arab
371
- Armi
372
- Armn
373
- Avst
374
- Bali
375
- Bamu
376
- Bass
377
- Batk
378
- Beng
379
- Bhks
380
- Bopo
381
- Brah
382
- Brai
383
- Bugi
384
- Buhd
385
- Cakm
386
- Cans
387
- Cari
388
- Cher
389
- Copt
390
- Qaac
391
- Cprt
392
- Cyrl
393
- Deva
394
- Dogr
395
- Dsrt
396
- Dupl
397
- Egyp
398
- Elba
399
- Ethi
400
- Geor
401
- Glag
402
- Gong
403
- Gonm
404
- Goth
405
- Gran
406
- Grek
407
- Gujr
408
- Guru
409
- Hang
410
- Hani
411
- Hano
412
- Hatr
413
- Hebr
414
- Hira
415
- Hluw
416
- Hmng
417
- Hung
418
- Ital
419
- Java
420
- Kali
421
- Kana
422
- Khar
423
- Khmr
424
- Khoj
425
- Knda
426
- Kthi
427
- Lana
428
- Laoo
429
- Latn
430
- Lepc
431
- Limb
432
- Lina
433
- Linb
434
- Lyci
435
- Lydi
436
- Mahj
437
- Maka
438
- Mand
439
- Mani
440
- Marc
441
- Medf
442
- Mend
443
- Merc
444
- Mero
445
- Mlym
446
- Mong
447
- Mroo
448
- Mtei
449
- Mult
450
- Mymr
451
- Narb
452
- Nbat
453
- Nkoo
454
- Nshu
455
- Ogam
456
- Olck
457
- Orkh
458
- Orya
459
- Osge
460
- Osma
461
- Palm
462
- Pauc
463
- Perm
464
- Phag
465
- Phli
466
- Phlp
467
- Phnx
468
- Plrd
469
- Prti
470
- Rjng
471
- Rohg
472
- Runr
473
- Samr
474
- Sarb
475
- Saur
476
- Sgnw
477
- Shaw
478
- Shrd
479
- Sidd
480
- Sind
481
- Sinh
482
- Sogd
483
- Sogo
484
- Sora
485
- Soyo
486
- Sund
487
- Sylo
488
- Syrc
489
- Tagb
490
- Takr
491
- Tale
492
- Talu
493
- Taml
494
- Tang
495
- Tavt
496
- Telu
497
- Tfng
498
- Tglg
499
- Thaa
500
- Tibt
501
- Tirh
502
- Ugar
503
- Vaii
504
- Wara
505
- Xpeo
506
- Xsux
507
- Yiii
508
- Zanb
509
- Zinh
510
- Qaai
511
- Zyyy
512
- Zzzz
513
-
514
- * DerivedAges
515
- Age=1.1
516
- Age=10.0
517
- Age=11.0
518
- Age=2.0
519
- Age=2.1
520
- Age=3.0
521
- Age=3.1
522
- Age=3.2
523
- Age=4.0
524
- Age=4.1
525
- Age=5.0
526
- Age=5.1
527
- Age=5.2
528
- Age=6.0
529
- Age=6.1
530
- Age=6.2
531
- Age=6.3
532
- Age=7.0
533
- Age=8.0
534
- Age=9.0
535
-
536
- * Blocks
537
- In_Basic_Latin
538
- In_Latin_1_Supplement
539
- In_Latin_Extended_A
540
- In_Latin_Extended_B
541
- In_IPA_Extensions
542
- In_Spacing_Modifier_Letters
543
- In_Combining_Diacritical_Marks
544
- In_Greek_and_Coptic
545
- In_Cyrillic
546
- In_Cyrillic_Supplement
547
- In_Armenian
548
- In_Hebrew
549
- In_Arabic
550
- In_Syriac
551
- In_Arabic_Supplement
552
- In_Thaana
553
- In_NKo
554
- In_Samaritan
555
- In_Mandaic
556
- In_Syriac_Supplement
557
- In_Arabic_Extended_A
558
- In_Devanagari
559
- In_Bengali
560
- In_Gurmukhi
561
- In_Gujarati
562
- In_Oriya
563
- In_Tamil
564
- In_Telugu
565
- In_Kannada
566
- In_Malayalam
567
- In_Sinhala
568
- In_Thai
569
- In_Lao
570
- In_Tibetan
571
- In_Myanmar
572
- In_Georgian
573
- In_Hangul_Jamo
574
- In_Ethiopic
575
- In_Ethiopic_Supplement
576
- In_Cherokee
577
- In_Unified_Canadian_Aboriginal_Syllabics
578
- In_Ogham
579
- In_Runic
580
- In_Tagalog
581
- In_Hanunoo
582
- In_Buhid
583
- In_Tagbanwa
584
- In_Khmer
585
- In_Mongolian
586
- In_Unified_Canadian_Aboriginal_Syllabics_Extended
587
- In_Limbu
588
- In_Tai_Le
589
- In_New_Tai_Lue
590
- In_Khmer_Symbols
591
- In_Buginese
592
- In_Tai_Tham
593
- In_Combining_Diacritical_Marks_Extended
594
- In_Balinese
595
- In_Sundanese
596
- In_Batak
597
- In_Lepcha
598
- In_Ol_Chiki
599
- In_Cyrillic_Extended_C
600
- In_Georgian_Extended
601
- In_Sundanese_Supplement
602
- In_Vedic_Extensions
603
- In_Phonetic_Extensions
604
- In_Phonetic_Extensions_Supplement
605
- In_Combining_Diacritical_Marks_Supplement
606
- In_Latin_Extended_Additional
607
- In_Greek_Extended
608
- In_General_Punctuation
609
- In_Superscripts_and_Subscripts
610
- In_Currency_Symbols
611
- In_Combining_Diacritical_Marks_for_Symbols
612
- In_Letterlike_Symbols
613
- In_Number_Forms
614
- In_Arrows
615
- In_Mathematical_Operators
616
- In_Miscellaneous_Technical
617
- In_Control_Pictures
618
- In_Optical_Character_Recognition
619
- In_Enclosed_Alphanumerics
620
- In_Box_Drawing
621
- In_Block_Elements
622
- In_Geometric_Shapes
623
- In_Miscellaneous_Symbols
624
- In_Dingbats
625
- In_Miscellaneous_Mathematical_Symbols_A
626
- In_Supplemental_Arrows_A
627
- In_Braille_Patterns
628
- In_Supplemental_Arrows_B
629
- In_Miscellaneous_Mathematical_Symbols_B
630
- In_Supplemental_Mathematical_Operators
631
- In_Miscellaneous_Symbols_and_Arrows
632
- In_Glagolitic
633
- In_Latin_Extended_C
634
- In_Coptic
635
- In_Georgian_Supplement
636
- In_Tifinagh
637
- In_Ethiopic_Extended
638
- In_Cyrillic_Extended_A
639
- In_Supplemental_Punctuation
640
- In_CJK_Radicals_Supplement
641
- In_Kangxi_Radicals
642
- In_Ideographic_Description_Characters
643
- In_CJK_Symbols_and_Punctuation
644
- In_Hiragana
645
- In_Katakana
646
- In_Bopomofo
647
- In_Hangul_Compatibility_Jamo
648
- In_Kanbun
649
- In_Bopomofo_Extended
650
- In_CJK_Strokes
651
- In_Katakana_Phonetic_Extensions
652
- In_Enclosed_CJK_Letters_and_Months
653
- In_CJK_Compatibility
654
- In_CJK_Unified_Ideographs_Extension_A
655
- In_Yijing_Hexagram_Symbols
656
- In_CJK_Unified_Ideographs
657
- In_Yi_Syllables
658
- In_Yi_Radicals
659
- In_Lisu
660
- In_Vai
661
- In_Cyrillic_Extended_B
662
- In_Bamum
663
- In_Modifier_Tone_Letters
664
- In_Latin_Extended_D
665
- In_Syloti_Nagri
666
- In_Common_Indic_Number_Forms
667
- In_Phags_pa
668
- In_Saurashtra
669
- In_Devanagari_Extended
670
- In_Kayah_Li
671
- In_Rejang
672
- In_Hangul_Jamo_Extended_A
673
- In_Javanese
674
- In_Myanmar_Extended_B
675
- In_Cham
676
- In_Myanmar_Extended_A
677
- In_Tai_Viet
678
- In_Meetei_Mayek_Extensions
679
- In_Ethiopic_Extended_A
680
- In_Latin_Extended_E
681
- In_Cherokee_Supplement
682
- In_Meetei_Mayek
683
- In_Hangul_Syllables
684
- In_Hangul_Jamo_Extended_B
685
- In_High_Surrogates
686
- In_High_Private_Use_Surrogates
687
- In_Low_Surrogates
688
- In_Private_Use_Area
689
- In_CJK_Compatibility_Ideographs
690
- In_Alphabetic_Presentation_Forms
691
- In_Arabic_Presentation_Forms_A
692
- In_Variation_Selectors
693
- In_Vertical_Forms
694
- In_Combining_Half_Marks
695
- In_CJK_Compatibility_Forms
696
- In_Small_Form_Variants
697
- In_Arabic_Presentation_Forms_B
698
- In_Halfwidth_and_Fullwidth_Forms
699
- In_Specials
700
- In_Linear_B_Syllabary
701
- In_Linear_B_Ideograms
702
- In_Aegean_Numbers
703
- In_Ancient_Greek_Numbers
704
- In_Ancient_Symbols
705
- In_Phaistos_Disc
706
- In_Lycian
707
- In_Carian
708
- In_Coptic_Epact_Numbers
709
- In_Old_Italic
710
- In_Gothic
711
- In_Old_Permic
712
- In_Ugaritic
713
- In_Old_Persian
714
- In_Deseret
715
- In_Shavian
716
- In_Osmanya
717
- In_Osage
718
- In_Elbasan
719
- In_Caucasian_Albanian
720
- In_Linear_A
721
- In_Cypriot_Syllabary
722
- In_Imperial_Aramaic
723
- In_Palmyrene
724
- In_Nabataean
725
- In_Hatran
726
- In_Phoenician
727
- In_Lydian
728
- In_Meroitic_Hieroglyphs
729
- In_Meroitic_Cursive
730
- In_Kharoshthi
731
- In_Old_South_Arabian
732
- In_Old_North_Arabian
733
- In_Manichaean
734
- In_Avestan
735
- In_Inscriptional_Parthian
736
- In_Inscriptional_Pahlavi
737
- In_Psalter_Pahlavi
738
- In_Old_Turkic
739
- In_Old_Hungarian
740
- In_Hanifi_Rohingya
741
- In_Rumi_Numeral_Symbols
742
- In_Old_Sogdian
743
- In_Sogdian
744
- In_Brahmi
745
- In_Kaithi
746
- In_Sora_Sompeng
747
- In_Chakma
748
- In_Mahajani
749
- In_Sharada
750
- In_Sinhala_Archaic_Numbers
751
- In_Khojki
752
- In_Multani
753
- In_Khudawadi
754
- In_Grantha
755
- In_Newa
756
- In_Tirhuta
757
- In_Siddham
758
- In_Modi
759
- In_Mongolian_Supplement
760
- In_Takri
761
- In_Ahom
762
- In_Dogra
763
- In_Warang_Citi
764
- In_Zanabazar_Square
765
- In_Soyombo
766
- In_Pau_Cin_Hau
767
- In_Bhaiksuki
768
- In_Marchen
769
- In_Masaram_Gondi
770
- In_Gunjala_Gondi
771
- In_Makasar
772
- In_Cuneiform
773
- In_Cuneiform_Numbers_and_Punctuation
774
- In_Early_Dynastic_Cuneiform
775
- In_Egyptian_Hieroglyphs
776
- In_Anatolian_Hieroglyphs
777
- In_Bamum_Supplement
778
- In_Mro
779
- In_Bassa_Vah
780
- In_Pahawh_Hmong
781
- In_Medefaidrin
782
- In_Miao
783
- In_Ideographic_Symbols_and_Punctuation
784
- In_Tangut
785
- In_Tangut_Components
786
- In_Kana_Supplement
787
- In_Kana_Extended_A
788
- In_Nushu
789
- In_Duployan
790
- In_Shorthand_Format_Controls
791
- In_Byzantine_Musical_Symbols
792
- In_Musical_Symbols
793
- In_Ancient_Greek_Musical_Notation
794
- In_Mayan_Numerals
795
- In_Tai_Xuan_Jing_Symbols
796
- In_Counting_Rod_Numerals
797
- In_Mathematical_Alphanumeric_Symbols
798
- In_Sutton_SignWriting
799
- In_Glagolitic_Supplement
800
- In_Mende_Kikakui
801
- In_Adlam
802
- In_Indic_Siyaq_Numbers
803
- In_Arabic_Mathematical_Alphabetic_Symbols
804
- In_Mahjong_Tiles
805
- In_Domino_Tiles
806
- In_Playing_Cards
807
- In_Enclosed_Alphanumeric_Supplement
808
- In_Enclosed_Ideographic_Supplement
809
- In_Miscellaneous_Symbols_and_Pictographs
810
- In_Emoticons
811
- In_Ornamental_Dingbats
812
- In_Transport_and_Map_Symbols
813
- In_Alchemical_Symbols
814
- In_Geometric_Shapes_Extended
815
- In_Supplemental_Arrows_C
816
- In_Supplemental_Symbols_and_Pictographs
817
- In_Chess_Symbols
818
- In_CJK_Unified_Ideographs_Extension_B
819
- In_CJK_Unified_Ideographs_Extension_C
820
- In_CJK_Unified_Ideographs_Extension_D
821
- In_CJK_Unified_Ideographs_Extension_E
822
- In_CJK_Unified_Ideographs_Extension_F
823
- In_CJK_Compatibility_Ideographs_Supplement
824
- In_Tags
825
- In_Variation_Selectors_Supplement
826
- In_Supplementary_Private_Use_Area_A
827
- In_Supplementary_Private_Use_Area_B
828
- In_No_Block