aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/fastlib/text/apps/unicode_propertydump.cpp
blob: 5f2b6089cdf24efb01eeb3f8f7df01ff730b93d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/fastlib/text/unicodeutil.h>

int main(int argc, char **argv) {
    for (ucs4_t testchar = 0; testchar < 0x10000; testchar++) {
        printf("%08x %04x\n", testchar, Fast_UnicodeUtil::GetProperty(testchar));
    }
    return 0;
}