All barcodes have some limit on the number of characters (or, most commonly, digits) they can represent - you wouldn't expect any kind of barcode to hold an infinite amount of data, would you? ;)
There are many kinds of barcodes, some even have variable lengths.
Emitting barcodes is not as simple as you may think, you'd probably have to:
- use a checksum algorithm
- follow the predifined "namespaces" (ISBN comes to mind)
- register your own namespace with GS1 or a similar regulating body
QR Codes and Semacodes are two-dimensional, this makes it harder to scramble the data they hold and I'm almost sure they are not regulated, but they are also a bit harder to generate.
Some more information about what (and why) you want to do would be helpful, otherwise you probably won't get any decent answers.
Some food for thought:
- will these barcodes be used internally? if not, how will you make sure your barcode isn't misinterpreted by another product which happens to share the same code?
- I might be wrong, but you can only use digits (and maybe X for the check digit) with the GTIN family of barcodes - more importantly, why would you need more than the 0-9 charset? even a 8-digit barcode provides 7^10 (282.475.249) different codes... Do you really have that many shoes?
- have you considered generating Semacodes instead? They allow direct URL routing and can be read by most cellphones nowadays - wouldn't such a system be enough for your needs?