Skip to content

Add remaining case tables

Alex Henrie requested to merge alexhenrie/poppler:case-tables into master

This covers the rest of the alphabets that are in Unicode's supplemental multilingual plane and have case.

Here's the Python script I wrote to generate the tables:

row = ''
for c in range(0x10c00, 0x10d00):
    if c % 8 == 0:
        print(row.rstrip())
        row = '  '
    row += hex(ord(chr(c).upper())) + ', '

Merge request reports