Code 93
Code 93 is a variable-length linear barcode symbology, developed in 1982 and standardized in the AIM-BC5-2000 specification. It was designed to provide higher density and better security than the Code 39 symbology.
The data density is comparatively low, so it requires considerably more space to encode the same amount of data and can not be used to label smaller items.
A sample Code 93 barcode is shown below.
Symbology Characteristics
Configuration name |
|
AIM specification | AIM-BC5-2000 |
Encodable character set | All 128 ASCII characters |
Integrity protection | Two mandatory check characters |
Quiet zone | Leading and trailing quiet zone of at least ten modules (10X) is required |
Configuration Options
Option | Description | Sample Configuration | Default |
---|---|---|---|
minLen | The minimum length of scanned codes |
const config = {
engine: {
symbologies: [
{ name: "code93", minLen: 8 }
]
}
}
| 4 |
maxLen | The maximum length of scanned codes |
const config = {
engine: {
symbologies: [
{ name: "code93", maxLen: 16 }
]
}
}
| 32 |
qz | The minimum size of the quiet zone, in modules (X) |
const config = {
engine: {
symbologies: [
{ name: "code93", qz: 10 }
]
}
}
| 5 |