I'm wondering, is there a known "font safe" alphabet? I tried googling this to no avail.

Considering that I want to use a string (e.g. a serial number), that consists of a mixture of either case English characters, and numbers. I would like to avoid having characters that can be misinterpreted as other characters. For example, I would like to avoid using O (capital o) and 0 (zero), because in certain fonts they can be confused. The same goes for 1 (one) and l (minuscule l). Nothing else jumps to mind, so I was wondering if there a full list.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The usual answer could be to generate the key with safe characters. Something like the below C++ code:

static const char alphabet[] = 
      // no l (similar to 1) or Z (similar to 2) or O (similar to 0) inside
     "abcdefghijkmnopqrstuvwxyz0123456789ACDEFGHIJKLMNPQRTUVWXY";
std::string randkey;
cont inst keylen = 24;
while (randkey.length () < keylen)
  randkey.append(alphabet[(random() & 0xfffffff) % sizeof(alphabet)]);

I'm not sure you should seek a "safe font" because that font might not be available on the client browser (unless you are printing on paper, in which case you should ensure to have the font when printing).

And "font safety" is a relative concept: a blind person, a person with bad eyes, even a tired person is reading font differently.

link|improve this answer
thank you, that's basically what I was looking for. I got 2 out of 3 then :) – Pawel Veselov Jan 2 at 7:19
You might consider that 6 and G are also similar. I find them different enough. YMMV – Basile Starynkevitch Jan 2 at 7:27
Somebody should crowdsource that in different fonts :) – Pawel Veselov Jan 2 at 7:58
1  
That won't work for persons with disabilities.... – Basile Starynkevitch Jan 2 at 8:00
1  
Since all available chars will not fill 6 bits, I came up with this base32 alphabet: 01234689ABCDEHJKLMNPSTUWXabfmpry, in attempt to reduce confusion to the minimum. – Pawel Veselov Jan 2 at 8:01
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.