Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Human friendly binary encoding

Tags:

Some time ago I came across a website that described a binary-to-text encoding which was human friendly. For example on input (for decoding) it accepted 0, o and O all as the same value, because people tend to mix those characters very easy.

Unfortunately I can't remember how it was called...

Edit: this was the one I was looking for: "Another alternative design for Base32 is created by Douglas Crockford, who proposes using additional characters for a checksum."

like image 617
compie Avatar asked Apr 17 '09 14:04

compie


1 Answers

Sounds like Base32.

There are variants (such as z-base-32) which accept O for 0, l/I for 1, etc.

like image 67
Colin Pickard Avatar answered Sep 20 '22 13:09

Colin Pickard