I am investigating encoding of date information into a linear barcode that must be as short as possible. One idea we have had is encoding date information rather than using the ASCII characters for the date numerals.
- The earliest date to be encoded is 01-JAN-2009
- Date must be encoded using printable ASCII characters
If only the date matters (not the time):
To encode this number as a printable sequence of ascii chars(ascii 48-127) do the following
pseudo code:
this way of encoding is the most dense. Since it encodes upto 96 days into the future in just 2 chars. 9216 days, in 3 chars, 884736 days in 4 chars.