Hi I have received your concern.and the code snippet is as belows://barcode data var code = '12345'; //convenience method var chr = function(n) { return String.fromCharCode(n); }; var barcode = '\x1D' + 'h' + chr(80) + //barcode height '\x1D' + 'f' + chr(0) + //font for printed number '\x1D' + 'k' + chr(69) + chr(code.length) + code + chr(0); //code39 qz.websocket.connect().then(function() { var config = qz.configs.create("Epson TM88V"); return qz.print(config, ['\n\n\n\n\n' + barcode + '\n\n\n\n\n']); }).catch(function(err) { alert(err); });Please help to make it convert to CODE 128 BarcodeRegards,Nikhil