$ uni print 43 42 41 43
CPoint Dec UTF8 HTML Name (Cat)
'A' U+0041 65 41 A LATIN CAPITAL LETT… (Uppercase_Let…)
'B' U+0042 66 42 B LATIN CAPITAL LETT… (Uppercase_Let…)
'C' U+0043 67 43 C LATIN CAPITAL LETT… (Uppercase_Let…)
'C' U+0043 67 43 C LATIN CAPITAL LETT… (Uppercase_Let…)
As you can see, the output from print sorts characters by codepoints rather than outputting them in the order given on the command line. This is a problem for scripted use, and it's inconsistent with how uni identify works. It also seems strange that the codepoints are sorted but duplicates are not removed.
As you can see, the output from
printsorts characters by codepoints rather than outputting them in the order given on the command line. This is a problem for scripted use, and it's inconsistent with howuni identifyworks. It also seems strange that the codepoints are sorted but duplicates are not removed.