More Symbologies
Australia Post 4-state Barcode
Australia Post Domestic eParcel Barcode
Aztec Code Barcode
Codabar
Code 11
Code 128
Code 16K
Code 32
Code 39
Code 93
Compact PDF417
Danish Postal 39
Data Matrix
Deutsche Post Identcode Barcode
Deutsche Post Leitcode Barcode
EAN/UPC Add On 2
EAN/UPC Add On 5
EAN-13
EAN-13 CC-A and CC-B Composite Barcodes
EAN-8
EAN-8 CC-A and CC-B Composite Barcodes
EAN-99
EAN-Velocity
FedEx Ground 96
French Postal 39 A/R
GS1-128
GS1-128 (formerly UCC/EAN-128) CC-A, CC-B and CC-C Composite Barcodes
GS1 DataBar-14 Stacked
GS1 DataBar-14 Stacked (Formerly RSS-14 Stacked - Reduced Space Symbology) CC-A and CC-B Composite Barcodes
GS1 DataBar-14 Stacked Omnidirectional
GS1 DataBar-14 Stacked Omnidirectional (Formerly RSS-14 Stacked Omnidirectional - Reduced Space Symbology) CC-A and CC-B Composite Barcodes
GS1 DataBar-14 Truncated
GS1 DataBar-14 Truncated (Formerly RSS-14 Truncated - Reduced Space Symbology) CC-A and CC-B Composite Barcodes
GS1 DataBar Expanded
GS1 DataBar Expanded (Formerly RSS Expanded - Reduced Space Symbology) CC-A and CC-B Composite Barcodes
GS1 DataBar Expanded Stacked
GS1 DataBar Expanded Stacked (Formerly RSS Expanded Stacked - Reduced Space Symbology) CC-A and CC-B Composite Barcodes
GS1 DataBar Limited
GS1 DataBar Limited (Formerly RSS Limited - Reduced Space Symbology) CC-A and CC-B Composite Barcodes
GS1 DataBar Omnidirectional/GS1 DataBar-14
GS1 DataBar Omnidirectional/GS1 DataBar-14 (Formerly RSS-14 - Reduced Space Symbology) CC-A and CC-B Composite Barcodes
GS1 DataMatrix Barcode
HIBC LIC 128
HIBC LIC 39
HIBC PAS 128
HIBC PAS 39
IATA 2 of 5 Barcode
Industrial 2 of 5
Interleaved 2 of 5
ISBN
ISBT 128
ISMN
ISSN
Italian Post 25
ITF-14
JAN-13
JAN-8
Kodak Patch Code Information
Macro PDF417
Matrix 2 of 5
MICR E13-B
Micro PDF417
Micro QR Code
MSI
Numly Number
OPC
PDF417
Pharmacode
PLANET
POSTNET
PZN
QR Code
British Royal Mail 4-State Customer Barcode
Royal TPG Post KIX 4-State Barcode
SCC-14
Semacode
Singapore 4-State Postal Code Barcode
SSCC-18
Swiss PostParcel Barcode
Telepen
UCC/EAN-128
UPC-A
UPC-A CC-A and CC-B Composite Barcodes
UPC-E
UPC-E CC-A and CC-B Composite Barcodes
UPS MaxiCode
USPS Facing Identification Marks
USPS Horizontal Bars
USPS Intelligent Mail / OneCode 4-State Customer Barcode
USPS Intelligent Mail Container Barcode
USPS Package Identification Code (UCC/EAN-128 GS1-128)
USPS Package Identification Code (USS Code 128)
USPS Sack Label Barcode
USPS Tray Label Barcode
VICS BOL Barcode
VICS SCAC PRO Barcode

GS1-128 (formerly UCC/EAN-128) Barcode - ASP.NET

This Symbology is also known as EAN-128, UCC-128, USS-128, GS1 128, UCC.EAN-128, GTIN-128, UCC-12, EAN/UCC-13, EAN/UCC-14

Overview
The GS1-128 (formerly UCC/EAN-128) Symbology is a subset of the more general Code 128 Symbology. By agreement among AIM, Inc., GS1 (EAN International and the UCC), use of the Function 1 Character (FNC1) in Code 128 Symbols in the first symbol character position following the Start Character has been reserved exclusively for the GS1 System.
GS1-128 was developed to provide a worldwide format and standard for exchanging common data between companies. While other barcodes simply encode data with no respect for what the data represents, GS1-128 encodes data and encodes what that data represents.
The encodable character used by GS1-128 Symbology is as defined by the International ISO/IEC 646 Standard.
GS1-128 encodes the so called Element Strings which are composed of an Application Identifier (AI) plus a data field. GS1-128 has a list of predefined Application Identifiers (AI) which identifies the meaning and format of the data following it. The AI is a 2, 3, or 4-digit number and it is enclosed in parentheses when printed below the barcode (the parentheses are only for visual clarity, and are not encoded in the barcode!).

Sample of a GS1-128 Barcode

How to encode GS1-128 values using Barcode Professional products

ASP.NET/Windows Forms/Reporting Services/Compact Framework WPF/Silverlight  
Note: Please refer to the Class Reference documentation for more information about the properties and methods stated in this document.
Introduction
GS1-128 encodes the so called Element Strings which are composed of an Application Identifier (AI) plus a data field. Each AI identifies the meaning and format of the data following it. The GS1 System provides more than one hundred Element Strings which can be found on the GS1 General Specification and is summarized in the following table.

Show GS1-128 Application Identifiers

When encoding those element strings into a GS1-128 barcode, the FNC1 function character starts it and is automatically encoded by the Barcode Professional. Also notice that the AI has parentheses around it in the human readable text of a GS1-128 barcode, but the parentheses are not encoded in the barcode itself.
Encoding Single GS1-128 AIs
To encode a single element string like the Global Trade Item Number (GTIN) which AI is (01), you just need to specify the AI + Data Field to the Code property. For example, to encode GTIN 95012345678903 you should:

  • Set the Symbology property to GS1128
  • Setting up dimensions and quiet zones:
    • Set the BarWidth and BarHeight properties based on your requirements (Values are expressed in Inches)
    • Set the QuietZone property to 10 times the BarWidth value or based on your requirements (Value is expressed in Inches)
  • Set the Code property with the value to encode. For example, Code = "(01)95012345678903" or Code = "0195012345678903" (NOTE: if you do not specify the parenthesis, then they will be automatically added by Barcode Professional in the Human Readable Text below the barcode)
  • Setting up the Bearer Bars if needed:
    • Set the BearerBarStyle property to Frame, or HorizontalRules
    • Set the BearerBarWidth property (Value is expressed in Inches)
Concatenation - Encoding multiple GS1-128 AIs into a single barcode
GS1-128 allows several Element Strings to be encoded in one barcode, a process called concatenation. Concatenation is advantageous because it means that the symbology elements are only needed once, and the space required for the symbol is smaller than when separate barcodes are used to encode each Element String. It also improves scanning accuracy, allowing for single scanning rather than multiple scanning. The various Element Strings can be transmitted from the bar code reader as a single full string.

When concatenating AIs, the FNC1 function character is used for marking the end of an AI. The AIs which require the usage of FNC1 are these ones: 10, 21, 22, 240, 241, 242, 250, 251, 253, 254, 30, 37, 390, 391, 392, 393, 400, 401, 402, 403, 420, 421, 422, 423, 424, 425, 426, 7001, 7002, 7003, 7004, 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, 8001, 8002, 8003, 8004, 8005, 8006, 8007, 8008, 8018, 8020, 8100, 8101, 8102, 8110, 90, 91, 92, 93, 94, 95, 96, 97, 98, and 99. If some of these AIs are the last element string in the concatenation, then the FNC1 is NOT required. If the AI is not listed here, then it does NOT require an FNC1 character either!

If you specify the AIs between parentheses, then the Barcode Professional takes care of the FNC1 character and will automatically add FNC1 for those AIs requiring it based on the list above. For example, to concatenate AI 8005 Price per Unit of Measure (365 currency units) and AI 10 Batch Numbers (123456), you should:
  • Set the Symbology property to GS1128
  • Setting up dimensions and quiet zones:
    • Set the BarWidth and BarHeight properties based on your requirements (Values are expressed in Inches)
    • Set the QuietZone property to 10 times the BarWidth value or based on your requirements (Value is expressed in Inches)
  • Set the Code property with the value to encode. For example, Code = "(8005)000365(10)123456" or Code = "8005000365È10123456" (NOTE: if you do not specify the parenthesis, then you will have to add an FNC1 character È (ASCII 200) for marking the end of the AIs which require an FNC1)
  • Setting up the Bearer Bars if needed:
    • Set the BearerBarStyle property to Frame, or HorizontalRules
    • Set the BearerBarWidth property (Value is expressed in Inches)
 Copyright © 2003 - 2012 Neodynamic S.R.L. All rights reserved.