Reputation: 11
I am part of an effort of getting the Kaktovik numerals into Unicode (https://en.wikipedia.org/wiki/Kaktovik_numerals). As you can see the system has 20 digits with a featural composition.
One of the questions I was asked, is what way would be the best way to input these numerals (assuming new assigned code-points) using regular keyboards. I understand that there are tools called Input Method Editors, but I want to know what input method would be the most intuitive to the users. All I can say is, that a system that uses 1 key for each of the 20 digits isn't practical.
Upvotes: 1
Views: 65
Reputation: 11
There are several ways:
Hexadecimal already has 16 digits; it's not that much more to just add G H I J for 20 digits.
You could take advantage of the subbase structure of the digits, and represent each Kaktovik digit with two arabic digits, e.g. counting up from 1: 01 02 03 04 05 11 12 13 14 15
The kicker is that you probably want to separate the digit pairs by some delimiter, e.g. 12,34,02.00,01
Which one is more intuitive, I guess you'd have to ask the people who actually use the numbers!
Upvotes: 1