How do you encode a carriage return in a QR barcode (so if I scan it with my android, for instance it will come up)

A
B
C

I have tried A~d013B~d013C etc. but it always shows the escape characters (among other ways I have found, none of which seem to work)

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You simply encode it by putting the correct byte sequence into the QR code. Assuming you're using the default ISO-8859-1 encoding, that's just the single byte 0x0D.

I imagine you know this so perhaps you are really asking how to specify this character/byte to some particular encoder? I can tell you that http://zxing.appspot.com/generator/ will easily let you do this in its "Text" mode as it gives you textarea to type into, where you can simply type a carriage return.

It in turn just generates a URL to the Google Chart Server:

http://chart.apis.google.com/chart?cht=qr&chs=350x350&chld=L&choe=UTF-8&chl=a%0Ab%0Ac

Here it's actually inserted line feeds (is that what you mean?), but you could edit the URL above to insert %0D for a carriage return as you like.

link|improve this answer
Very helpful. Thank you! – Mani5556 Dec 8 '11 at 16:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.