Even though the CueCat uses a
modified method of BASE64 it is possible to use a simple reference
chart to decode numeric barcodes only. To start off I will
give some example data and then take you through step by step of the
process of using the chart.
|
1st and 2nd |
3rd |
4th |
0 |
C3 |
n |
Z |
1 |
CN |
j |
Y |
2 |
Cx |
f |
X |
3 |
Ch |
b |
W |
4 |
D3 |
D |
3 |
5 |
DN |
z |
2 |
6 |
Dx |
v |
1 |
7 |
Dh |
r |
0 |
8 |
E3 |
T |
7 |
9 |
EN |
P |
6 |
First step scan a barcode using your CueCat. Remember
that for you to get the data you MUST uninstall the CueCat software
(or not install it to start with). You can then start a simple
text editor such as Notepad. To run Notepad click Run
from the Start menu and type in Notepad and press enter. This
will then start the program.
Once you scan in data it should look something like this:
.C3nZC3nZC3nXC3nZCxvYDNn6.fGjX.Dhf2Cxr3E3bYDNT1C3a.
So let's decode this barcode. The data of the barcode are
held in the last segment of data. The data that we will decode
is: Dhf2Cxr3E3bYDNT1C3a
Every three digits in the barcode are encoded in four digits of
the data from the CueCat. So we must first start with the first
four digits "Dhf2" this will tell us the first three
numbers of the barcode.
Second, we need to take the first two characters of this four
character set and find it on the reference chart in the 1st and 2nd
character column.
This gives us: 7
Third, we need to take the third digit "f" and find it
in the chart under 3rd letter. Thus our second number is: 2
Forth, we need to take the forth digit "2" and find it
in the chart under 4th letter. Thus our third number is: 5
Fifth, you will go on to the next set of four digits and start at
step two again, until you complete the output data.
The final number is: 72527483158603
I would recommend going on to the more detailed part in the Full
Decoding page. |