1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
/// A number of constants to give a name to all characters in this block.
mod constants {
    /// \u{8a0}: 'ࢠ'
    pub const ARABIC_LETTER_BEH_WITH_SMALL_V_BELOW: char = 'ࢠ';
    /// \u{8a1}: 'ࢡ'
    pub const ARABIC_LETTER_BEH_WITH_HAMZA_ABOVE: char = 'ࢡ';
    /// \u{8a2}: 'ࢢ'
    pub const ARABIC_LETTER_JEEM_WITH_TWO_DOTS_ABOVE: char = 'ࢢ';
    /// \u{8a3}: 'ࢣ'
    pub const ARABIC_LETTER_TAH_WITH_TWO_DOTS_ABOVE: char = 'ࢣ';
    /// \u{8a4}: 'ࢤ'
    pub const ARABIC_LETTER_FEH_WITH_DOT_BELOW_AND_THREE_DOTS_ABOVE: char = 'ࢤ';
    /// \u{8a5}: 'ࢥ'
    pub const ARABIC_LETTER_QAF_WITH_DOT_BELOW: char = 'ࢥ';
    /// \u{8a6}: 'ࢦ'
    pub const ARABIC_LETTER_LAM_WITH_DOUBLE_BAR: char = 'ࢦ';
    /// \u{8a7}: 'ࢧ'
    pub const ARABIC_LETTER_MEEM_WITH_THREE_DOTS_ABOVE: char = 'ࢧ';
    /// \u{8a8}: 'ࢨ'
    pub const ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_HAMZA_ABOVE: char = 'ࢨ';
    /// \u{8a9}: 'ࢩ'
    pub const ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_DOT_ABOVE: char = 'ࢩ';
    /// \u{8aa}: 'ࢪ'
    pub const ARABIC_LETTER_REH_WITH_LOOP: char = 'ࢪ';
    /// \u{8ab}: 'ࢫ'
    pub const ARABIC_LETTER_WAW_WITH_DOT_WITHIN: char = 'ࢫ';
    /// \u{8ac}: 'ࢬ'
    pub const ARABIC_LETTER_ROHINGYA_YEH: char = 'ࢬ';
    /// \u{8ad}: 'ࢭ'
    pub const ARABIC_LETTER_LOW_ALEF: char = 'ࢭ';
    /// \u{8ae}: 'ࢮ'
    pub const ARABIC_LETTER_DAL_WITH_THREE_DOTS_BELOW: char = 'ࢮ';
    /// \u{8af}: 'ࢯ'
    pub const ARABIC_LETTER_SAD_WITH_THREE_DOTS_BELOW: char = 'ࢯ';
    /// \u{8b0}: 'ࢰ'
    pub const ARABIC_LETTER_GAF_WITH_INVERTED_STROKE: char = 'ࢰ';
    /// \u{8b1}: 'ࢱ'
    pub const ARABIC_LETTER_STRAIGHT_WAW: char = 'ࢱ';
    /// \u{8b2}: 'ࢲ'
    pub const ARABIC_LETTER_ZAIN_WITH_INVERTED_V_ABOVE: char = 'ࢲ';
    /// \u{8b3}: 'ࢳ'
    pub const ARABIC_LETTER_AIN_WITH_THREE_DOTS_BELOW: char = 'ࢳ';
    /// \u{8b4}: 'ࢴ'
    pub const ARABIC_LETTER_KAF_WITH_DOT_BELOW: char = 'ࢴ';
    /// \u{8b6}: 'ࢶ'
    pub const ARABIC_LETTER_BEH_WITH_SMALL_MEEM_ABOVE: char = 'ࢶ';
    /// \u{8b7}: 'ࢷ'
    pub const ARABIC_LETTER_PEH_WITH_SMALL_MEEM_ABOVE: char = 'ࢷ';
    /// \u{8b8}: 'ࢸ'
    pub const ARABIC_LETTER_TEH_WITH_SMALL_TEH_ABOVE: char = 'ࢸ';
    /// \u{8b9}: 'ࢹ'
    pub const ARABIC_LETTER_REH_WITH_SMALL_NOON_ABOVE: char = 'ࢹ';
    /// \u{8ba}: 'ࢺ'
    pub const ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_SMALL_NOON_ABOVE: char = 'ࢺ';
    /// \u{8bb}: 'ࢻ'
    pub const ARABIC_LETTER_AFRICAN_FEH: char = 'ࢻ';
    /// \u{8bc}: 'ࢼ'
    pub const ARABIC_LETTER_AFRICAN_QAF: char = 'ࢼ';
    /// \u{8bd}: 'ࢽ'
    pub const ARABIC_LETTER_AFRICAN_NOON: char = 'ࢽ';
    /// \u{8d3}: '࣓'
    pub const ARABIC_SMALL_LOW_WAW: char = '࣓';
    /// \u{8d4}: 'ࣔ'
    pub const ARABIC_SMALL_HIGH_WORD_AR_DASH_RUB: char = 'ࣔ';
    /// \u{8d5}: 'ࣕ'
    pub const ARABIC_SMALL_HIGH_SAD: char = 'ࣕ';
    /// \u{8d6}: 'ࣖ'
    pub const ARABIC_SMALL_HIGH_AIN: char = 'ࣖ';
    /// \u{8d7}: 'ࣗ'
    pub const ARABIC_SMALL_HIGH_QAF: char = 'ࣗ';
    /// \u{8d8}: 'ࣘ'
    pub const ARABIC_SMALL_HIGH_NOON_WITH_KASRA: char = 'ࣘ';
    /// \u{8d9}: 'ࣙ'
    pub const ARABIC_SMALL_LOW_NOON_WITH_KASRA: char = 'ࣙ';
    /// \u{8da}: 'ࣚ'
    pub const ARABIC_SMALL_HIGH_WORD_ATH_DASH_THALATHA: char = 'ࣚ';
    /// \u{8db}: 'ࣛ'
    pub const ARABIC_SMALL_HIGH_WORD_AS_DASH_SAJDA: char = 'ࣛ';
    /// \u{8dc}: 'ࣜ'
    pub const ARABIC_SMALL_HIGH_WORD_AN_DASH_NISF: char = 'ࣜ';
    /// \u{8dd}: 'ࣝ'
    pub const ARABIC_SMALL_HIGH_WORD_SAKTA: char = 'ࣝ';
    /// \u{8de}: 'ࣞ'
    pub const ARABIC_SMALL_HIGH_WORD_QIF: char = 'ࣞ';
    /// \u{8df}: 'ࣟ'
    pub const ARABIC_SMALL_HIGH_WORD_WAQFA: char = 'ࣟ';
    /// \u{8e0}: '࣠'
    pub const ARABIC_SMALL_HIGH_FOOTNOTE_MARKER: char = '࣠';
    /// \u{8e1}: '࣡'
    pub const ARABIC_SMALL_HIGH_SIGN_SAFHA: char = '࣡';
    /// \u{8e2}: '࣢'
    pub const ARABIC_DISPUTED_END_OF_AYAH: char = '࣢';
    /// \u{8e3}: 'ࣣ'
    pub const ARABIC_TURNED_DAMMA_BELOW: char = 'ࣣ';
    /// \u{8e4}: 'ࣤ'
    pub const ARABIC_CURLY_FATHA: char = 'ࣤ';
    /// \u{8e5}: 'ࣥ'
    pub const ARABIC_CURLY_DAMMA: char = 'ࣥ';
    /// \u{8e6}: 'ࣦ'
    pub const ARABIC_CURLY_KASRA: char = 'ࣦ';
    /// \u{8e7}: 'ࣧ'
    pub const ARABIC_CURLY_FATHATAN: char = 'ࣧ';
    /// \u{8e8}: 'ࣨ'
    pub const ARABIC_CURLY_DAMMATAN: char = 'ࣨ';
    /// \u{8e9}: 'ࣩ'
    pub const ARABIC_CURLY_KASRATAN: char = 'ࣩ';
    /// \u{8ea}: '࣪'
    pub const ARABIC_TONE_ONE_DOT_ABOVE: char = '࣪';
    /// \u{8eb}: '࣫'
    pub const ARABIC_TONE_TWO_DOTS_ABOVE: char = '࣫';
    /// \u{8ec}: '࣬'
    pub const ARABIC_TONE_LOOP_ABOVE: char = '࣬';
    /// \u{8ed}: '࣭'
    pub const ARABIC_TONE_ONE_DOT_BELOW: char = '࣭';
    /// \u{8ee}: '࣮'
    pub const ARABIC_TONE_TWO_DOTS_BELOW: char = '࣮';
    /// \u{8ef}: '࣯'
    pub const ARABIC_TONE_LOOP_BELOW: char = '࣯';
    /// \u{8f0}: 'ࣰ'
    pub const ARABIC_OPEN_FATHATAN: char = 'ࣰ';
    /// \u{8f1}: 'ࣱ'
    pub const ARABIC_OPEN_DAMMATAN: char = 'ࣱ';
    /// \u{8f2}: 'ࣲ'
    pub const ARABIC_OPEN_KASRATAN: char = 'ࣲ';
    /// \u{8f3}: 'ࣳ'
    pub const ARABIC_SMALL_HIGH_WAW: char = 'ࣳ';
    /// \u{8f4}: 'ࣴ'
    pub const ARABIC_FATHA_WITH_RING: char = 'ࣴ';
    /// \u{8f5}: 'ࣵ'
    pub const ARABIC_FATHA_WITH_DOT_ABOVE: char = 'ࣵ';
    /// \u{8f6}: 'ࣶ'
    pub const ARABIC_KASRA_WITH_DOT_BELOW: char = 'ࣶ';
    /// \u{8f7}: 'ࣷ'
    pub const ARABIC_LEFT_ARROWHEAD_ABOVE: char = 'ࣷ';
    /// \u{8f8}: 'ࣸ'
    pub const ARABIC_RIGHT_ARROWHEAD_ABOVE: char = 'ࣸ';
    /// \u{8f9}: 'ࣹ'
    pub const ARABIC_LEFT_ARROWHEAD_BELOW: char = 'ࣹ';
    /// \u{8fa}: 'ࣺ'
    pub const ARABIC_RIGHT_ARROWHEAD_BELOW: char = 'ࣺ';
    /// \u{8fb}: 'ࣻ'
    pub const ARABIC_DOUBLE_RIGHT_ARROWHEAD_ABOVE: char = 'ࣻ';
    /// \u{8fc}: 'ࣼ'
    pub const ARABIC_DOUBLE_RIGHT_ARROWHEAD_ABOVE_WITH_DOT: char = 'ࣼ';
    /// \u{8fd}: 'ࣽ'
    pub const ARABIC_RIGHT_ARROWHEAD_ABOVE_WITH_DOT: char = 'ࣽ';
    /// \u{8fe}: 'ࣾ'
    pub const ARABIC_DAMMA_WITH_DOT: char = 'ࣾ';
}

/// An enum to represent all characters in the ArabicExtendedA block.
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
pub enum ArabicExtendedA {
    /// \u{8a0}: 'ࢠ'
    ArabicLetterBehWithSmallVBelow,
    /// \u{8a1}: 'ࢡ'
    ArabicLetterBehWithHamzaAbove,
    /// \u{8a2}: 'ࢢ'
    ArabicLetterJeemWithTwoDotsAbove,
    /// \u{8a3}: 'ࢣ'
    ArabicLetterTahWithTwoDotsAbove,
    /// \u{8a4}: 'ࢤ'
    ArabicLetterFehWithDotBelowAndThreeDotsAbove,
    /// \u{8a5}: 'ࢥ'
    ArabicLetterQafWithDotBelow,
    /// \u{8a6}: 'ࢦ'
    ArabicLetterLamWithDoubleBar,
    /// \u{8a7}: 'ࢧ'
    ArabicLetterMeemWithThreeDotsAbove,
    /// \u{8a8}: 'ࢨ'
    ArabicLetterYehWithTwoDotsBelowAndHamzaAbove,
    /// \u{8a9}: 'ࢩ'
    ArabicLetterYehWithTwoDotsBelowAndDotAbove,
    /// \u{8aa}: 'ࢪ'
    ArabicLetterRehWithLoop,
    /// \u{8ab}: 'ࢫ'
    ArabicLetterWawWithDotWithin,
    /// \u{8ac}: 'ࢬ'
    ArabicLetterRohingyaYeh,
    /// \u{8ad}: 'ࢭ'
    ArabicLetterLowAlef,
    /// \u{8ae}: 'ࢮ'
    ArabicLetterDalWithThreeDotsBelow,
    /// \u{8af}: 'ࢯ'
    ArabicLetterSadWithThreeDotsBelow,
    /// \u{8b0}: 'ࢰ'
    ArabicLetterGafWithInvertedStroke,
    /// \u{8b1}: 'ࢱ'
    ArabicLetterStraightWaw,
    /// \u{8b2}: 'ࢲ'
    ArabicLetterZainWithInvertedVAbove,
    /// \u{8b3}: 'ࢳ'
    ArabicLetterAinWithThreeDotsBelow,
    /// \u{8b4}: 'ࢴ'
    ArabicLetterKafWithDotBelow,
    /// \u{8b6}: 'ࢶ'
    ArabicLetterBehWithSmallMeemAbove,
    /// \u{8b7}: 'ࢷ'
    ArabicLetterPehWithSmallMeemAbove,
    /// \u{8b8}: 'ࢸ'
    ArabicLetterTehWithSmallTehAbove,
    /// \u{8b9}: 'ࢹ'
    ArabicLetterRehWithSmallNoonAbove,
    /// \u{8ba}: 'ࢺ'
    ArabicLetterYehWithTwoDotsBelowAndSmallNoonAbove,
    /// \u{8bb}: 'ࢻ'
    ArabicLetterAfricanFeh,
    /// \u{8bc}: 'ࢼ'
    ArabicLetterAfricanQaf,
    /// \u{8bd}: 'ࢽ'
    ArabicLetterAfricanNoon,
    /// \u{8d3}: '࣓'
    ArabicSmallLowWaw,
    /// \u{8d4}: 'ࣔ'
    ArabicSmallHighWordArDashRub,
    /// \u{8d5}: 'ࣕ'
    ArabicSmallHighSad,
    /// \u{8d6}: 'ࣖ'
    ArabicSmallHighAin,
    /// \u{8d7}: 'ࣗ'
    ArabicSmallHighQaf,
    /// \u{8d8}: 'ࣘ'
    ArabicSmallHighNoonWithKasra,
    /// \u{8d9}: 'ࣙ'
    ArabicSmallLowNoonWithKasra,
    /// \u{8da}: 'ࣚ'
    ArabicSmallHighWordAthDashThalatha,
    /// \u{8db}: 'ࣛ'
    ArabicSmallHighWordAsDashSajda,
    /// \u{8dc}: 'ࣜ'
    ArabicSmallHighWordAnDashNisf,
    /// \u{8dd}: 'ࣝ'
    ArabicSmallHighWordSakta,
    /// \u{8de}: 'ࣞ'
    ArabicSmallHighWordQif,
    /// \u{8df}: 'ࣟ'
    ArabicSmallHighWordWaqfa,
    /// \u{8e0}: '࣠'
    ArabicSmallHighFootnoteMarker,
    /// \u{8e1}: '࣡'
    ArabicSmallHighSignSafha,
    /// \u{8e2}: '࣢'
    ArabicDisputedEndOfAyah,
    /// \u{8e3}: 'ࣣ'
    ArabicTurnedDammaBelow,
    /// \u{8e4}: 'ࣤ'
    ArabicCurlyFatha,
    /// \u{8e5}: 'ࣥ'
    ArabicCurlyDamma,
    /// \u{8e6}: 'ࣦ'
    ArabicCurlyKasra,
    /// \u{8e7}: 'ࣧ'
    ArabicCurlyFathatan,
    /// \u{8e8}: 'ࣨ'
    ArabicCurlyDammatan,
    /// \u{8e9}: 'ࣩ'
    ArabicCurlyKasratan,
    /// \u{8ea}: '࣪'
    ArabicToneOneDotAbove,
    /// \u{8eb}: '࣫'
    ArabicToneTwoDotsAbove,
    /// \u{8ec}: '࣬'
    ArabicToneLoopAbove,
    /// \u{8ed}: '࣭'
    ArabicToneOneDotBelow,
    /// \u{8ee}: '࣮'
    ArabicToneTwoDotsBelow,
    /// \u{8ef}: '࣯'
    ArabicToneLoopBelow,
    /// \u{8f0}: 'ࣰ'
    ArabicOpenFathatan,
    /// \u{8f1}: 'ࣱ'
    ArabicOpenDammatan,
    /// \u{8f2}: 'ࣲ'
    ArabicOpenKasratan,
    /// \u{8f3}: 'ࣳ'
    ArabicSmallHighWaw,
    /// \u{8f4}: 'ࣴ'
    ArabicFathaWithRing,
    /// \u{8f5}: 'ࣵ'
    ArabicFathaWithDotAbove,
    /// \u{8f6}: 'ࣶ'
    ArabicKasraWithDotBelow,
    /// \u{8f7}: 'ࣷ'
    ArabicLeftArrowheadAbove,
    /// \u{8f8}: 'ࣸ'
    ArabicRightArrowheadAbove,
    /// \u{8f9}: 'ࣹ'
    ArabicLeftArrowheadBelow,
    /// \u{8fa}: 'ࣺ'
    ArabicRightArrowheadBelow,
    /// \u{8fb}: 'ࣻ'
    ArabicDoubleRightArrowheadAbove,
    /// \u{8fc}: 'ࣼ'
    ArabicDoubleRightArrowheadAboveWithDot,
    /// \u{8fd}: 'ࣽ'
    ArabicRightArrowheadAboveWithDot,
    /// \u{8fe}: 'ࣾ'
    ArabicDammaWithDot,
}

impl Into<char> for ArabicExtendedA {
    fn into(self) -> char {
        use constants::*;
        match self {
            ArabicExtendedA::ArabicLetterBehWithSmallVBelow => ARABIC_LETTER_BEH_WITH_SMALL_V_BELOW,
            ArabicExtendedA::ArabicLetterBehWithHamzaAbove => ARABIC_LETTER_BEH_WITH_HAMZA_ABOVE,
            ArabicExtendedA::ArabicLetterJeemWithTwoDotsAbove => ARABIC_LETTER_JEEM_WITH_TWO_DOTS_ABOVE,
            ArabicExtendedA::ArabicLetterTahWithTwoDotsAbove => ARABIC_LETTER_TAH_WITH_TWO_DOTS_ABOVE,
            ArabicExtendedA::ArabicLetterFehWithDotBelowAndThreeDotsAbove => ARABIC_LETTER_FEH_WITH_DOT_BELOW_AND_THREE_DOTS_ABOVE,
            ArabicExtendedA::ArabicLetterQafWithDotBelow => ARABIC_LETTER_QAF_WITH_DOT_BELOW,
            ArabicExtendedA::ArabicLetterLamWithDoubleBar => ARABIC_LETTER_LAM_WITH_DOUBLE_BAR,
            ArabicExtendedA::ArabicLetterMeemWithThreeDotsAbove => ARABIC_LETTER_MEEM_WITH_THREE_DOTS_ABOVE,
            ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndHamzaAbove => ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_HAMZA_ABOVE,
            ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndDotAbove => ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_DOT_ABOVE,
            ArabicExtendedA::ArabicLetterRehWithLoop => ARABIC_LETTER_REH_WITH_LOOP,
            ArabicExtendedA::ArabicLetterWawWithDotWithin => ARABIC_LETTER_WAW_WITH_DOT_WITHIN,
            ArabicExtendedA::ArabicLetterRohingyaYeh => ARABIC_LETTER_ROHINGYA_YEH,
            ArabicExtendedA::ArabicLetterLowAlef => ARABIC_LETTER_LOW_ALEF,
            ArabicExtendedA::ArabicLetterDalWithThreeDotsBelow => ARABIC_LETTER_DAL_WITH_THREE_DOTS_BELOW,
            ArabicExtendedA::ArabicLetterSadWithThreeDotsBelow => ARABIC_LETTER_SAD_WITH_THREE_DOTS_BELOW,
            ArabicExtendedA::ArabicLetterGafWithInvertedStroke => ARABIC_LETTER_GAF_WITH_INVERTED_STROKE,
            ArabicExtendedA::ArabicLetterStraightWaw => ARABIC_LETTER_STRAIGHT_WAW,
            ArabicExtendedA::ArabicLetterZainWithInvertedVAbove => ARABIC_LETTER_ZAIN_WITH_INVERTED_V_ABOVE,
            ArabicExtendedA::ArabicLetterAinWithThreeDotsBelow => ARABIC_LETTER_AIN_WITH_THREE_DOTS_BELOW,
            ArabicExtendedA::ArabicLetterKafWithDotBelow => ARABIC_LETTER_KAF_WITH_DOT_BELOW,
            ArabicExtendedA::ArabicLetterBehWithSmallMeemAbove => ARABIC_LETTER_BEH_WITH_SMALL_MEEM_ABOVE,
            ArabicExtendedA::ArabicLetterPehWithSmallMeemAbove => ARABIC_LETTER_PEH_WITH_SMALL_MEEM_ABOVE,
            ArabicExtendedA::ArabicLetterTehWithSmallTehAbove => ARABIC_LETTER_TEH_WITH_SMALL_TEH_ABOVE,
            ArabicExtendedA::ArabicLetterRehWithSmallNoonAbove => ARABIC_LETTER_REH_WITH_SMALL_NOON_ABOVE,
            ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndSmallNoonAbove => ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_SMALL_NOON_ABOVE,
            ArabicExtendedA::ArabicLetterAfricanFeh => ARABIC_LETTER_AFRICAN_FEH,
            ArabicExtendedA::ArabicLetterAfricanQaf => ARABIC_LETTER_AFRICAN_QAF,
            ArabicExtendedA::ArabicLetterAfricanNoon => ARABIC_LETTER_AFRICAN_NOON,
            ArabicExtendedA::ArabicSmallLowWaw => ARABIC_SMALL_LOW_WAW,
            ArabicExtendedA::ArabicSmallHighWordArDashRub => ARABIC_SMALL_HIGH_WORD_AR_DASH_RUB,
            ArabicExtendedA::ArabicSmallHighSad => ARABIC_SMALL_HIGH_SAD,
            ArabicExtendedA::ArabicSmallHighAin => ARABIC_SMALL_HIGH_AIN,
            ArabicExtendedA::ArabicSmallHighQaf => ARABIC_SMALL_HIGH_QAF,
            ArabicExtendedA::ArabicSmallHighNoonWithKasra => ARABIC_SMALL_HIGH_NOON_WITH_KASRA,
            ArabicExtendedA::ArabicSmallLowNoonWithKasra => ARABIC_SMALL_LOW_NOON_WITH_KASRA,
            ArabicExtendedA::ArabicSmallHighWordAthDashThalatha => ARABIC_SMALL_HIGH_WORD_ATH_DASH_THALATHA,
            ArabicExtendedA::ArabicSmallHighWordAsDashSajda => ARABIC_SMALL_HIGH_WORD_AS_DASH_SAJDA,
            ArabicExtendedA::ArabicSmallHighWordAnDashNisf => ARABIC_SMALL_HIGH_WORD_AN_DASH_NISF,
            ArabicExtendedA::ArabicSmallHighWordSakta => ARABIC_SMALL_HIGH_WORD_SAKTA,
            ArabicExtendedA::ArabicSmallHighWordQif => ARABIC_SMALL_HIGH_WORD_QIF,
            ArabicExtendedA::ArabicSmallHighWordWaqfa => ARABIC_SMALL_HIGH_WORD_WAQFA,
            ArabicExtendedA::ArabicSmallHighFootnoteMarker => ARABIC_SMALL_HIGH_FOOTNOTE_MARKER,
            ArabicExtendedA::ArabicSmallHighSignSafha => ARABIC_SMALL_HIGH_SIGN_SAFHA,
            ArabicExtendedA::ArabicDisputedEndOfAyah => ARABIC_DISPUTED_END_OF_AYAH,
            ArabicExtendedA::ArabicTurnedDammaBelow => ARABIC_TURNED_DAMMA_BELOW,
            ArabicExtendedA::ArabicCurlyFatha => ARABIC_CURLY_FATHA,
            ArabicExtendedA::ArabicCurlyDamma => ARABIC_CURLY_DAMMA,
            ArabicExtendedA::ArabicCurlyKasra => ARABIC_CURLY_KASRA,
            ArabicExtendedA::ArabicCurlyFathatan => ARABIC_CURLY_FATHATAN,
            ArabicExtendedA::ArabicCurlyDammatan => ARABIC_CURLY_DAMMATAN,
            ArabicExtendedA::ArabicCurlyKasratan => ARABIC_CURLY_KASRATAN,
            ArabicExtendedA::ArabicToneOneDotAbove => ARABIC_TONE_ONE_DOT_ABOVE,
            ArabicExtendedA::ArabicToneTwoDotsAbove => ARABIC_TONE_TWO_DOTS_ABOVE,
            ArabicExtendedA::ArabicToneLoopAbove => ARABIC_TONE_LOOP_ABOVE,
            ArabicExtendedA::ArabicToneOneDotBelow => ARABIC_TONE_ONE_DOT_BELOW,
            ArabicExtendedA::ArabicToneTwoDotsBelow => ARABIC_TONE_TWO_DOTS_BELOW,
            ArabicExtendedA::ArabicToneLoopBelow => ARABIC_TONE_LOOP_BELOW,
            ArabicExtendedA::ArabicOpenFathatan => ARABIC_OPEN_FATHATAN,
            ArabicExtendedA::ArabicOpenDammatan => ARABIC_OPEN_DAMMATAN,
            ArabicExtendedA::ArabicOpenKasratan => ARABIC_OPEN_KASRATAN,
            ArabicExtendedA::ArabicSmallHighWaw => ARABIC_SMALL_HIGH_WAW,
            ArabicExtendedA::ArabicFathaWithRing => ARABIC_FATHA_WITH_RING,
            ArabicExtendedA::ArabicFathaWithDotAbove => ARABIC_FATHA_WITH_DOT_ABOVE,
            ArabicExtendedA::ArabicKasraWithDotBelow => ARABIC_KASRA_WITH_DOT_BELOW,
            ArabicExtendedA::ArabicLeftArrowheadAbove => ARABIC_LEFT_ARROWHEAD_ABOVE,
            ArabicExtendedA::ArabicRightArrowheadAbove => ARABIC_RIGHT_ARROWHEAD_ABOVE,
            ArabicExtendedA::ArabicLeftArrowheadBelow => ARABIC_LEFT_ARROWHEAD_BELOW,
            ArabicExtendedA::ArabicRightArrowheadBelow => ARABIC_RIGHT_ARROWHEAD_BELOW,
            ArabicExtendedA::ArabicDoubleRightArrowheadAbove => ARABIC_DOUBLE_RIGHT_ARROWHEAD_ABOVE,
            ArabicExtendedA::ArabicDoubleRightArrowheadAboveWithDot => ARABIC_DOUBLE_RIGHT_ARROWHEAD_ABOVE_WITH_DOT,
            ArabicExtendedA::ArabicRightArrowheadAboveWithDot => ARABIC_RIGHT_ARROWHEAD_ABOVE_WITH_DOT,
            ArabicExtendedA::ArabicDammaWithDot => ARABIC_DAMMA_WITH_DOT,
        }
    }
}

impl std::convert::TryFrom<char> for ArabicExtendedA {
    type Error = ();
    fn try_from(c: char) -> Result<Self, Self::Error> {
        use constants::*;
        match c {
            ARABIC_LETTER_BEH_WITH_SMALL_V_BELOW => Ok(ArabicExtendedA::ArabicLetterBehWithSmallVBelow),
            ARABIC_LETTER_BEH_WITH_HAMZA_ABOVE => Ok(ArabicExtendedA::ArabicLetterBehWithHamzaAbove),
            ARABIC_LETTER_JEEM_WITH_TWO_DOTS_ABOVE => Ok(ArabicExtendedA::ArabicLetterJeemWithTwoDotsAbove),
            ARABIC_LETTER_TAH_WITH_TWO_DOTS_ABOVE => Ok(ArabicExtendedA::ArabicLetterTahWithTwoDotsAbove),
            ARABIC_LETTER_FEH_WITH_DOT_BELOW_AND_THREE_DOTS_ABOVE => Ok(ArabicExtendedA::ArabicLetterFehWithDotBelowAndThreeDotsAbove),
            ARABIC_LETTER_QAF_WITH_DOT_BELOW => Ok(ArabicExtendedA::ArabicLetterQafWithDotBelow),
            ARABIC_LETTER_LAM_WITH_DOUBLE_BAR => Ok(ArabicExtendedA::ArabicLetterLamWithDoubleBar),
            ARABIC_LETTER_MEEM_WITH_THREE_DOTS_ABOVE => Ok(ArabicExtendedA::ArabicLetterMeemWithThreeDotsAbove),
            ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_HAMZA_ABOVE => Ok(ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndHamzaAbove),
            ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_DOT_ABOVE => Ok(ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndDotAbove),
            ARABIC_LETTER_REH_WITH_LOOP => Ok(ArabicExtendedA::ArabicLetterRehWithLoop),
            ARABIC_LETTER_WAW_WITH_DOT_WITHIN => Ok(ArabicExtendedA::ArabicLetterWawWithDotWithin),
            ARABIC_LETTER_ROHINGYA_YEH => Ok(ArabicExtendedA::ArabicLetterRohingyaYeh),
            ARABIC_LETTER_LOW_ALEF => Ok(ArabicExtendedA::ArabicLetterLowAlef),
            ARABIC_LETTER_DAL_WITH_THREE_DOTS_BELOW => Ok(ArabicExtendedA::ArabicLetterDalWithThreeDotsBelow),
            ARABIC_LETTER_SAD_WITH_THREE_DOTS_BELOW => Ok(ArabicExtendedA::ArabicLetterSadWithThreeDotsBelow),
            ARABIC_LETTER_GAF_WITH_INVERTED_STROKE => Ok(ArabicExtendedA::ArabicLetterGafWithInvertedStroke),
            ARABIC_LETTER_STRAIGHT_WAW => Ok(ArabicExtendedA::ArabicLetterStraightWaw),
            ARABIC_LETTER_ZAIN_WITH_INVERTED_V_ABOVE => Ok(ArabicExtendedA::ArabicLetterZainWithInvertedVAbove),
            ARABIC_LETTER_AIN_WITH_THREE_DOTS_BELOW => Ok(ArabicExtendedA::ArabicLetterAinWithThreeDotsBelow),
            ARABIC_LETTER_KAF_WITH_DOT_BELOW => Ok(ArabicExtendedA::ArabicLetterKafWithDotBelow),
            ARABIC_LETTER_BEH_WITH_SMALL_MEEM_ABOVE => Ok(ArabicExtendedA::ArabicLetterBehWithSmallMeemAbove),
            ARABIC_LETTER_PEH_WITH_SMALL_MEEM_ABOVE => Ok(ArabicExtendedA::ArabicLetterPehWithSmallMeemAbove),
            ARABIC_LETTER_TEH_WITH_SMALL_TEH_ABOVE => Ok(ArabicExtendedA::ArabicLetterTehWithSmallTehAbove),
            ARABIC_LETTER_REH_WITH_SMALL_NOON_ABOVE => Ok(ArabicExtendedA::ArabicLetterRehWithSmallNoonAbove),
            ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_SMALL_NOON_ABOVE => Ok(ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndSmallNoonAbove),
            ARABIC_LETTER_AFRICAN_FEH => Ok(ArabicExtendedA::ArabicLetterAfricanFeh),
            ARABIC_LETTER_AFRICAN_QAF => Ok(ArabicExtendedA::ArabicLetterAfricanQaf),
            ARABIC_LETTER_AFRICAN_NOON => Ok(ArabicExtendedA::ArabicLetterAfricanNoon),
            ARABIC_SMALL_LOW_WAW => Ok(ArabicExtendedA::ArabicSmallLowWaw),
            ARABIC_SMALL_HIGH_WORD_AR_DASH_RUB => Ok(ArabicExtendedA::ArabicSmallHighWordArDashRub),
            ARABIC_SMALL_HIGH_SAD => Ok(ArabicExtendedA::ArabicSmallHighSad),
            ARABIC_SMALL_HIGH_AIN => Ok(ArabicExtendedA::ArabicSmallHighAin),
            ARABIC_SMALL_HIGH_QAF => Ok(ArabicExtendedA::ArabicSmallHighQaf),
            ARABIC_SMALL_HIGH_NOON_WITH_KASRA => Ok(ArabicExtendedA::ArabicSmallHighNoonWithKasra),
            ARABIC_SMALL_LOW_NOON_WITH_KASRA => Ok(ArabicExtendedA::ArabicSmallLowNoonWithKasra),
            ARABIC_SMALL_HIGH_WORD_ATH_DASH_THALATHA => Ok(ArabicExtendedA::ArabicSmallHighWordAthDashThalatha),
            ARABIC_SMALL_HIGH_WORD_AS_DASH_SAJDA => Ok(ArabicExtendedA::ArabicSmallHighWordAsDashSajda),
            ARABIC_SMALL_HIGH_WORD_AN_DASH_NISF => Ok(ArabicExtendedA::ArabicSmallHighWordAnDashNisf),
            ARABIC_SMALL_HIGH_WORD_SAKTA => Ok(ArabicExtendedA::ArabicSmallHighWordSakta),
            ARABIC_SMALL_HIGH_WORD_QIF => Ok(ArabicExtendedA::ArabicSmallHighWordQif),
            ARABIC_SMALL_HIGH_WORD_WAQFA => Ok(ArabicExtendedA::ArabicSmallHighWordWaqfa),
            ARABIC_SMALL_HIGH_FOOTNOTE_MARKER => Ok(ArabicExtendedA::ArabicSmallHighFootnoteMarker),
            ARABIC_SMALL_HIGH_SIGN_SAFHA => Ok(ArabicExtendedA::ArabicSmallHighSignSafha),
            ARABIC_DISPUTED_END_OF_AYAH => Ok(ArabicExtendedA::ArabicDisputedEndOfAyah),
            ARABIC_TURNED_DAMMA_BELOW => Ok(ArabicExtendedA::ArabicTurnedDammaBelow),
            ARABIC_CURLY_FATHA => Ok(ArabicExtendedA::ArabicCurlyFatha),
            ARABIC_CURLY_DAMMA => Ok(ArabicExtendedA::ArabicCurlyDamma),
            ARABIC_CURLY_KASRA => Ok(ArabicExtendedA::ArabicCurlyKasra),
            ARABIC_CURLY_FATHATAN => Ok(ArabicExtendedA::ArabicCurlyFathatan),
            ARABIC_CURLY_DAMMATAN => Ok(ArabicExtendedA::ArabicCurlyDammatan),
            ARABIC_CURLY_KASRATAN => Ok(ArabicExtendedA::ArabicCurlyKasratan),
            ARABIC_TONE_ONE_DOT_ABOVE => Ok(ArabicExtendedA::ArabicToneOneDotAbove),
            ARABIC_TONE_TWO_DOTS_ABOVE => Ok(ArabicExtendedA::ArabicToneTwoDotsAbove),
            ARABIC_TONE_LOOP_ABOVE => Ok(ArabicExtendedA::ArabicToneLoopAbove),
            ARABIC_TONE_ONE_DOT_BELOW => Ok(ArabicExtendedA::ArabicToneOneDotBelow),
            ARABIC_TONE_TWO_DOTS_BELOW => Ok(ArabicExtendedA::ArabicToneTwoDotsBelow),
            ARABIC_TONE_LOOP_BELOW => Ok(ArabicExtendedA::ArabicToneLoopBelow),
            ARABIC_OPEN_FATHATAN => Ok(ArabicExtendedA::ArabicOpenFathatan),
            ARABIC_OPEN_DAMMATAN => Ok(ArabicExtendedA::ArabicOpenDammatan),
            ARABIC_OPEN_KASRATAN => Ok(ArabicExtendedA::ArabicOpenKasratan),
            ARABIC_SMALL_HIGH_WAW => Ok(ArabicExtendedA::ArabicSmallHighWaw),
            ARABIC_FATHA_WITH_RING => Ok(ArabicExtendedA::ArabicFathaWithRing),
            ARABIC_FATHA_WITH_DOT_ABOVE => Ok(ArabicExtendedA::ArabicFathaWithDotAbove),
            ARABIC_KASRA_WITH_DOT_BELOW => Ok(ArabicExtendedA::ArabicKasraWithDotBelow),
            ARABIC_LEFT_ARROWHEAD_ABOVE => Ok(ArabicExtendedA::ArabicLeftArrowheadAbove),
            ARABIC_RIGHT_ARROWHEAD_ABOVE => Ok(ArabicExtendedA::ArabicRightArrowheadAbove),
            ARABIC_LEFT_ARROWHEAD_BELOW => Ok(ArabicExtendedA::ArabicLeftArrowheadBelow),
            ARABIC_RIGHT_ARROWHEAD_BELOW => Ok(ArabicExtendedA::ArabicRightArrowheadBelow),
            ARABIC_DOUBLE_RIGHT_ARROWHEAD_ABOVE => Ok(ArabicExtendedA::ArabicDoubleRightArrowheadAbove),
            ARABIC_DOUBLE_RIGHT_ARROWHEAD_ABOVE_WITH_DOT => Ok(ArabicExtendedA::ArabicDoubleRightArrowheadAboveWithDot),
            ARABIC_RIGHT_ARROWHEAD_ABOVE_WITH_DOT => Ok(ArabicExtendedA::ArabicRightArrowheadAboveWithDot),
            ARABIC_DAMMA_WITH_DOT => Ok(ArabicExtendedA::ArabicDammaWithDot),
            _ => Err(()),
        }
    }
}

impl Into<u32> for ArabicExtendedA {
    fn into(self) -> u32 {
        let c: char = self.into();
        let hex = c
            .escape_unicode()
            .to_string()
            .replace("\\u{", "")
            .replace("}", "");
        u32::from_str_radix(&hex, 16).unwrap()
    }
}

impl std::convert::TryFrom<u32> for ArabicExtendedA {
    type Error = ();
    fn try_from(u: u32) -> Result<Self, Self::Error> {
        if let Ok(c) = char::try_from(u) {
            Self::try_from(c)
        } else {
            Err(())
        }
    }
}

impl Iterator for ArabicExtendedA {
    type Item = Self;
    fn next(&mut self) -> Option<Self> {
        let index: u32 = (*self).into();
        use std::convert::TryFrom;
        Self::try_from(index + 1).ok()
    }
}

impl ArabicExtendedA {
    /// The character with the lowest index in this unicode block
    pub fn new() -> Self {
        ArabicExtendedA::ArabicLetterBehWithSmallVBelow
    }

    /// The character's name, all lowercase and space-separated
    pub fn name(&self) -> &str {
        match self {
            ArabicExtendedA::ArabicLetterBehWithSmallVBelow => "arabic letter beh with small v below",
            ArabicExtendedA::ArabicLetterBehWithHamzaAbove => "arabic letter beh with hamza above",
            ArabicExtendedA::ArabicLetterJeemWithTwoDotsAbove => "arabic letter jeem with two dots above",
            ArabicExtendedA::ArabicLetterTahWithTwoDotsAbove => "arabic letter tah with two dots above",
            ArabicExtendedA::ArabicLetterFehWithDotBelowAndThreeDotsAbove => "arabic letter feh with dot below and three dots above",
            ArabicExtendedA::ArabicLetterQafWithDotBelow => "arabic letter qaf with dot below",
            ArabicExtendedA::ArabicLetterLamWithDoubleBar => "arabic letter lam with double bar",
            ArabicExtendedA::ArabicLetterMeemWithThreeDotsAbove => "arabic letter meem with three dots above",
            ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndHamzaAbove => "arabic letter yeh with two dots below and hamza above",
            ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndDotAbove => "arabic letter yeh with two dots below and dot above",
            ArabicExtendedA::ArabicLetterRehWithLoop => "arabic letter reh with loop",
            ArabicExtendedA::ArabicLetterWawWithDotWithin => "arabic letter waw with dot within",
            ArabicExtendedA::ArabicLetterRohingyaYeh => "arabic letter rohingya yeh",
            ArabicExtendedA::ArabicLetterLowAlef => "arabic letter low alef",
            ArabicExtendedA::ArabicLetterDalWithThreeDotsBelow => "arabic letter dal with three dots below",
            ArabicExtendedA::ArabicLetterSadWithThreeDotsBelow => "arabic letter sad with three dots below",
            ArabicExtendedA::ArabicLetterGafWithInvertedStroke => "arabic letter gaf with inverted stroke",
            ArabicExtendedA::ArabicLetterStraightWaw => "arabic letter straight waw",
            ArabicExtendedA::ArabicLetterZainWithInvertedVAbove => "arabic letter zain with inverted v above",
            ArabicExtendedA::ArabicLetterAinWithThreeDotsBelow => "arabic letter ain with three dots below",
            ArabicExtendedA::ArabicLetterKafWithDotBelow => "arabic letter kaf with dot below",
            ArabicExtendedA::ArabicLetterBehWithSmallMeemAbove => "arabic letter beh with small meem above",
            ArabicExtendedA::ArabicLetterPehWithSmallMeemAbove => "arabic letter peh with small meem above",
            ArabicExtendedA::ArabicLetterTehWithSmallTehAbove => "arabic letter teh with small teh above",
            ArabicExtendedA::ArabicLetterRehWithSmallNoonAbove => "arabic letter reh with small noon above",
            ArabicExtendedA::ArabicLetterYehWithTwoDotsBelowAndSmallNoonAbove => "arabic letter yeh with two dots below and small noon above",
            ArabicExtendedA::ArabicLetterAfricanFeh => "arabic letter african feh",
            ArabicExtendedA::ArabicLetterAfricanQaf => "arabic letter african qaf",
            ArabicExtendedA::ArabicLetterAfricanNoon => "arabic letter african noon",
            ArabicExtendedA::ArabicSmallLowWaw => "arabic small low waw",
            ArabicExtendedA::ArabicSmallHighWordArDashRub => "arabic small high word ar-rub",
            ArabicExtendedA::ArabicSmallHighSad => "arabic small high sad",
            ArabicExtendedA::ArabicSmallHighAin => "arabic small high ain",
            ArabicExtendedA::ArabicSmallHighQaf => "arabic small high qaf",
            ArabicExtendedA::ArabicSmallHighNoonWithKasra => "arabic small high noon with kasra",
            ArabicExtendedA::ArabicSmallLowNoonWithKasra => "arabic small low noon with kasra",
            ArabicExtendedA::ArabicSmallHighWordAthDashThalatha => "arabic small high word ath-thalatha",
            ArabicExtendedA::ArabicSmallHighWordAsDashSajda => "arabic small high word as-sajda",
            ArabicExtendedA::ArabicSmallHighWordAnDashNisf => "arabic small high word an-nisf",
            ArabicExtendedA::ArabicSmallHighWordSakta => "arabic small high word sakta",
            ArabicExtendedA::ArabicSmallHighWordQif => "arabic small high word qif",
            ArabicExtendedA::ArabicSmallHighWordWaqfa => "arabic small high word waqfa",
            ArabicExtendedA::ArabicSmallHighFootnoteMarker => "arabic small high footnote marker",
            ArabicExtendedA::ArabicSmallHighSignSafha => "arabic small high sign safha",
            ArabicExtendedA::ArabicDisputedEndOfAyah => "arabic disputed end of ayah",
            ArabicExtendedA::ArabicTurnedDammaBelow => "arabic turned damma below",
            ArabicExtendedA::ArabicCurlyFatha => "arabic curly fatha",
            ArabicExtendedA::ArabicCurlyDamma => "arabic curly damma",
            ArabicExtendedA::ArabicCurlyKasra => "arabic curly kasra",
            ArabicExtendedA::ArabicCurlyFathatan => "arabic curly fathatan",
            ArabicExtendedA::ArabicCurlyDammatan => "arabic curly dammatan",
            ArabicExtendedA::ArabicCurlyKasratan => "arabic curly kasratan",
            ArabicExtendedA::ArabicToneOneDotAbove => "arabic tone one dot above",
            ArabicExtendedA::ArabicToneTwoDotsAbove => "arabic tone two dots above",
            ArabicExtendedA::ArabicToneLoopAbove => "arabic tone loop above",
            ArabicExtendedA::ArabicToneOneDotBelow => "arabic tone one dot below",
            ArabicExtendedA::ArabicToneTwoDotsBelow => "arabic tone two dots below",
            ArabicExtendedA::ArabicToneLoopBelow => "arabic tone loop below",
            ArabicExtendedA::ArabicOpenFathatan => "arabic open fathatan",
            ArabicExtendedA::ArabicOpenDammatan => "arabic open dammatan",
            ArabicExtendedA::ArabicOpenKasratan => "arabic open kasratan",
            ArabicExtendedA::ArabicSmallHighWaw => "arabic small high waw",
            ArabicExtendedA::ArabicFathaWithRing => "arabic fatha with ring",
            ArabicExtendedA::ArabicFathaWithDotAbove => "arabic fatha with dot above",
            ArabicExtendedA::ArabicKasraWithDotBelow => "arabic kasra with dot below",
            ArabicExtendedA::ArabicLeftArrowheadAbove => "arabic left arrowhead above",
            ArabicExtendedA::ArabicRightArrowheadAbove => "arabic right arrowhead above",
            ArabicExtendedA::ArabicLeftArrowheadBelow => "arabic left arrowhead below",
            ArabicExtendedA::ArabicRightArrowheadBelow => "arabic right arrowhead below",
            ArabicExtendedA::ArabicDoubleRightArrowheadAbove => "arabic double right arrowhead above",
            ArabicExtendedA::ArabicDoubleRightArrowheadAboveWithDot => "arabic double right arrowhead above with dot",
            ArabicExtendedA::ArabicRightArrowheadAboveWithDot => "arabic right arrowhead above with dot",
            ArabicExtendedA::ArabicDammaWithDot => "arabic damma with dot",
        }
    }
}