We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Characters are the alphabet minus some letters, and the digits. They use 5 bits instead of 4.
The order is: ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'R', 'S', 'T', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'R', 'S', 'T', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
Codes look like this: xxxx-yyyy
xxxx-yyyy
00001 22233 44555 6--77 88889 AAAAB CCDDD EFFFF
--77 8888 3344 5556 DDDE FFFF BCC9 AAAA 0000 1222
Things to note:
-- is always 00
The 4th character (6--77) can only be A, B, C, D, T, V, W, and X. Otherwise the code is invalid.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Characters are the alphabet minus some letters, and the digits. They use 5 bits instead of 4.
The order is:
['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'R', 'S', 'T', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
Codes look like this:
xxxx-yyyy
00001 22233 44555 6--77 88889 AAAAB CCDDD EFFFF
--77 8888 3344 5556 DDDE FFFF BCC9 AAAA 0000 1222
Things to note:
-- is always 00
The 4th character (6--77) can only be A, B, C, D, T, V, W, and X. Otherwise the code is invalid.
The text was updated successfully, but these errors were encountered: