Is it possible to create a QR code using text?Text on QR barcode?Broken UTF-8 display in XFCE terminal after upgrade to 4.8Why google code download page have a QR code?An application to view a ascii format matrix file as an image?How do I get MinTTY working with UTF8Using Notepad++ to view text files that also contain lower ASCII control charactersIn Notepad++ the encoding of a file is set to UTF-8 but the encoding is actually ASCIIHow to change LibreOffice default text encoding?Can the UTF-8 code page identifier (65001) be different on other computers?What to do with a QR code from web.whatsapp.com?
How to prevent "they're falling in love" trope
What method can I use to design a dungeon difficult enough that the PCs can't make it through without killing them?
How to tell a function to use the default argument values?
Alternative to sending password over mail?
Why do bosons tend to occupy the same state?
What do you call someone who asks many questions?
What does the expression "A Mann!" means
Am I breaking OOP practice with this architecture?
What is the idiomatic way to say "clothing fits"?
Expand and Contract
Extract rows of a table, that include less than x NULLs
How do I handle a potential work/personal life conflict as the manager of one of my friends?
Why didn't Miles's spider sense work before?
Why was the shrinking from 8″ made only to 5.25″ and not smaller (4″ or less)?
Apex Framework / library for consuming REST services
Can we compute the area of a quadrilateral with one right angle when we only know the lengths of any three sides?
How to write generic function with two inputs?
How does a predictive coding aid in lossless compression?
Could the museum Saturn V's be refitted for one more flight?
Intersection Puzzle
What's the in-universe reasoning behind sorcerers needing material components?
Method Does Not Exist error message
How would I stat a creature to be immune to everything but the Magic Missile spell? (just for fun)
Why no variance term in Bayesian logistic regression?
Is it possible to create a QR code using text?
Text on QR barcode?Broken UTF-8 display in XFCE terminal after upgrade to 4.8Why google code download page have a QR code?An application to view a ascii format matrix file as an image?How do I get MinTTY working with UTF8Using Notepad++ to view text files that also contain lower ASCII control charactersIn Notepad++ the encoding of a file is set to UTF-8 but the encoding is actually ASCIIHow to change LibreOffice default text encoding?Can the UTF-8 code page identifier (65001) be different on other computers?What to do with a QR code from web.whatsapp.com?
QR codes I have seen are mostly image files. But can you create QR codes using plain text?
For example ASCII and UTF-8 have black boxes as characters. Can I use those together with spaces to create a QR code?
utf-8 ascii qr-code
New contributor
add a comment |
QR codes I have seen are mostly image files. But can you create QR codes using plain text?
For example ASCII and UTF-8 have black boxes as characters. Can I use those together with spaces to create a QR code?
utf-8 ascii qr-code
New contributor
6
Is there a specific project this is for? I'm just curious
– Ben Leggiero
yesterday
5
@BenLeggiero Thank you for your question. I don't have a certain project but I thought it would be handy to know the existence of such QR codes. For example, you can put those in a bio on a forum if the forum doesn't support profile pictures, and many more advantages.
– Murat Kaçiran
yesterday
At a small enough font size, you don't even need the black boxes!
– Paul D. Waite
8 hours ago
add a comment |
QR codes I have seen are mostly image files. But can you create QR codes using plain text?
For example ASCII and UTF-8 have black boxes as characters. Can I use those together with spaces to create a QR code?
utf-8 ascii qr-code
New contributor
QR codes I have seen are mostly image files. But can you create QR codes using plain text?
For example ASCII and UTF-8 have black boxes as characters. Can I use those together with spaces to create a QR code?
utf-8 ascii qr-code
utf-8 ascii qr-code
New contributor
New contributor
edited 2 days ago
JakeGould
32.6k10100142
32.6k10100142
New contributor
asked 2 days ago
Murat KaçiranMurat Kaçiran
605410
605410
New contributor
New contributor
6
Is there a specific project this is for? I'm just curious
– Ben Leggiero
yesterday
5
@BenLeggiero Thank you for your question. I don't have a certain project but I thought it would be handy to know the existence of such QR codes. For example, you can put those in a bio on a forum if the forum doesn't support profile pictures, and many more advantages.
– Murat Kaçiran
yesterday
At a small enough font size, you don't even need the black boxes!
– Paul D. Waite
8 hours ago
add a comment |
6
Is there a specific project this is for? I'm just curious
– Ben Leggiero
yesterday
5
@BenLeggiero Thank you for your question. I don't have a certain project but I thought it would be handy to know the existence of such QR codes. For example, you can put those in a bio on a forum if the forum doesn't support profile pictures, and many more advantages.
– Murat Kaçiran
yesterday
At a small enough font size, you don't even need the black boxes!
– Paul D. Waite
8 hours ago
6
6
Is there a specific project this is for? I'm just curious
– Ben Leggiero
yesterday
Is there a specific project this is for? I'm just curious
– Ben Leggiero
yesterday
5
5
@BenLeggiero Thank you for your question. I don't have a certain project but I thought it would be handy to know the existence of such QR codes. For example, you can put those in a bio on a forum if the forum doesn't support profile pictures, and many more advantages.
– Murat Kaçiran
yesterday
@BenLeggiero Thank you for your question. I don't have a certain project but I thought it would be handy to know the existence of such QR codes. For example, you can put those in a bio on a forum if the forum doesn't support profile pictures, and many more advantages.
– Murat Kaçiran
yesterday
At a small enough font size, you don't even need the black boxes!
– Paul D. Waite
8 hours ago
At a small enough font size, you don't even need the black boxes!
– Paul D. Waite
8 hours ago
add a comment |
1 Answer
1
active
oldest
votes
Yes! There is a utility called qrencode
that can render these for you.
The only really important factor for a QR code is that the 2D array has "darker" and "ligher" pixels / segments. It can be colored too, though contrast can start to be an issue.
ASCII
Your ability to read this QR code will likely depend on the camera's resolution, distance, and the software you're using.
qrencode -t ASCIIi 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Note: I used -t ASCIIi
(Inverted ASCII) because my terminal is White-on-Black.
ANSI
This mode works by setting the background color to black or white, and printing a number of space characters.
qrencode -t ANSI 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Some of the raw characters written to the terminal are shown below, these are ANSI escape codes. An "escape" character has a value of 0x1b
and can often be written as e
.
e[40m
sets the background color to blacke[47m
sets the background color to white0x20
is an ASCII space
UTF-8
There is also a UTF-8 mode (-t UTF8
). This mode uses the "half block" characters to increase the density, and cut the line count by half.
- ▀ - U+2580 / Upper Half Block
- ▄ - U+2584 / Lower Half Block
- █ - U+2588 / Full Block
Screenshot from @grawity (thanks)
qrencode -t UTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
qrencode -t ANSIUTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
3
Don't forget-t UTF-8
mode, which uses the "box drawings" characters that OP mentions?
– grawity
2 days ago
8
i.imgur.com/WQYkxYm.png i.imgur.com/KeDVJ16.png – this uses "half block" characters▄
▀
█
, with optional colors to increase contrast only. (They're from Unicode 1.1 and date all the way to IBM DOS; surprised there's still any terminal that cannot render those...)
– grawity
2 days ago
1
No problem! It should work on Windows.. the project page mentions a Win32 port, that has an installer available for download... it looks like it was last updated in Feb 2015.
– Attie
2 days ago
6
@MuratKaçiran: Powershell and CMD are just command interpreters (shells), they both use the same "Windows Console" as the terminal. It too has received significant improvements in Win10.18xx. In the past, it did not support UTF-8 at all. It could do Unicode via UTF-16 with suitably written programs, but those programs had to deliberately use the special Unicode mode. If the program didn't do that, all you get is the MS-DOS era cp437 codepages... In that situation,qrencode -t UTF8 | iconv -f utf8 -t cp437
may still work, as the same box drawings also existed back then.
– grawity
yesterday
3
To my surprise, the QR reader app on my iphone successfully read all these off my screen, including the ASCII#
one. +1.
– Digital Trauma
7 hours ago
|
show 9 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "3"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Murat Kaçiran is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1420001%2fis-it-possible-to-create-a-qr-code-using-text%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Yes! There is a utility called qrencode
that can render these for you.
The only really important factor for a QR code is that the 2D array has "darker" and "ligher" pixels / segments. It can be colored too, though contrast can start to be an issue.
ASCII
Your ability to read this QR code will likely depend on the camera's resolution, distance, and the software you're using.
qrencode -t ASCIIi 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Note: I used -t ASCIIi
(Inverted ASCII) because my terminal is White-on-Black.
ANSI
This mode works by setting the background color to black or white, and printing a number of space characters.
qrencode -t ANSI 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Some of the raw characters written to the terminal are shown below, these are ANSI escape codes. An "escape" character has a value of 0x1b
and can often be written as e
.
e[40m
sets the background color to blacke[47m
sets the background color to white0x20
is an ASCII space
UTF-8
There is also a UTF-8 mode (-t UTF8
). This mode uses the "half block" characters to increase the density, and cut the line count by half.
- ▀ - U+2580 / Upper Half Block
- ▄ - U+2584 / Lower Half Block
- █ - U+2588 / Full Block
Screenshot from @grawity (thanks)
qrencode -t UTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
qrencode -t ANSIUTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
3
Don't forget-t UTF-8
mode, which uses the "box drawings" characters that OP mentions?
– grawity
2 days ago
8
i.imgur.com/WQYkxYm.png i.imgur.com/KeDVJ16.png – this uses "half block" characters▄
▀
█
, with optional colors to increase contrast only. (They're from Unicode 1.1 and date all the way to IBM DOS; surprised there's still any terminal that cannot render those...)
– grawity
2 days ago
1
No problem! It should work on Windows.. the project page mentions a Win32 port, that has an installer available for download... it looks like it was last updated in Feb 2015.
– Attie
2 days ago
6
@MuratKaçiran: Powershell and CMD are just command interpreters (shells), they both use the same "Windows Console" as the terminal. It too has received significant improvements in Win10.18xx. In the past, it did not support UTF-8 at all. It could do Unicode via UTF-16 with suitably written programs, but those programs had to deliberately use the special Unicode mode. If the program didn't do that, all you get is the MS-DOS era cp437 codepages... In that situation,qrencode -t UTF8 | iconv -f utf8 -t cp437
may still work, as the same box drawings also existed back then.
– grawity
yesterday
3
To my surprise, the QR reader app on my iphone successfully read all these off my screen, including the ASCII#
one. +1.
– Digital Trauma
7 hours ago
|
show 9 more comments
Yes! There is a utility called qrencode
that can render these for you.
The only really important factor for a QR code is that the 2D array has "darker" and "ligher" pixels / segments. It can be colored too, though contrast can start to be an issue.
ASCII
Your ability to read this QR code will likely depend on the camera's resolution, distance, and the software you're using.
qrencode -t ASCIIi 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Note: I used -t ASCIIi
(Inverted ASCII) because my terminal is White-on-Black.
ANSI
This mode works by setting the background color to black or white, and printing a number of space characters.
qrencode -t ANSI 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Some of the raw characters written to the terminal are shown below, these are ANSI escape codes. An "escape" character has a value of 0x1b
and can often be written as e
.
e[40m
sets the background color to blacke[47m
sets the background color to white0x20
is an ASCII space
UTF-8
There is also a UTF-8 mode (-t UTF8
). This mode uses the "half block" characters to increase the density, and cut the line count by half.
- ▀ - U+2580 / Upper Half Block
- ▄ - U+2584 / Lower Half Block
- █ - U+2588 / Full Block
Screenshot from @grawity (thanks)
qrencode -t UTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
qrencode -t ANSIUTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
3
Don't forget-t UTF-8
mode, which uses the "box drawings" characters that OP mentions?
– grawity
2 days ago
8
i.imgur.com/WQYkxYm.png i.imgur.com/KeDVJ16.png – this uses "half block" characters▄
▀
█
, with optional colors to increase contrast only. (They're from Unicode 1.1 and date all the way to IBM DOS; surprised there's still any terminal that cannot render those...)
– grawity
2 days ago
1
No problem! It should work on Windows.. the project page mentions a Win32 port, that has an installer available for download... it looks like it was last updated in Feb 2015.
– Attie
2 days ago
6
@MuratKaçiran: Powershell and CMD are just command interpreters (shells), they both use the same "Windows Console" as the terminal. It too has received significant improvements in Win10.18xx. In the past, it did not support UTF-8 at all. It could do Unicode via UTF-16 with suitably written programs, but those programs had to deliberately use the special Unicode mode. If the program didn't do that, all you get is the MS-DOS era cp437 codepages... In that situation,qrencode -t UTF8 | iconv -f utf8 -t cp437
may still work, as the same box drawings also existed back then.
– grawity
yesterday
3
To my surprise, the QR reader app on my iphone successfully read all these off my screen, including the ASCII#
one. +1.
– Digital Trauma
7 hours ago
|
show 9 more comments
Yes! There is a utility called qrencode
that can render these for you.
The only really important factor for a QR code is that the 2D array has "darker" and "ligher" pixels / segments. It can be colored too, though contrast can start to be an issue.
ASCII
Your ability to read this QR code will likely depend on the camera's resolution, distance, and the software you're using.
qrencode -t ASCIIi 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Note: I used -t ASCIIi
(Inverted ASCII) because my terminal is White-on-Black.
ANSI
This mode works by setting the background color to black or white, and printing a number of space characters.
qrencode -t ANSI 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Some of the raw characters written to the terminal are shown below, these are ANSI escape codes. An "escape" character has a value of 0x1b
and can often be written as e
.
e[40m
sets the background color to blacke[47m
sets the background color to white0x20
is an ASCII space
UTF-8
There is also a UTF-8 mode (-t UTF8
). This mode uses the "half block" characters to increase the density, and cut the line count by half.
- ▀ - U+2580 / Upper Half Block
- ▄ - U+2584 / Lower Half Block
- █ - U+2588 / Full Block
Screenshot from @grawity (thanks)
qrencode -t UTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
qrencode -t ANSIUTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Yes! There is a utility called qrencode
that can render these for you.
The only really important factor for a QR code is that the 2D array has "darker" and "ligher" pixels / segments. It can be colored too, though contrast can start to be an issue.
ASCII
Your ability to read this QR code will likely depend on the camera's resolution, distance, and the software you're using.
qrencode -t ASCIIi 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Note: I used -t ASCIIi
(Inverted ASCII) because my terminal is White-on-Black.
ANSI
This mode works by setting the background color to black or white, and printing a number of space characters.
qrencode -t ANSI 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
Some of the raw characters written to the terminal are shown below, these are ANSI escape codes. An "escape" character has a value of 0x1b
and can often be written as e
.
e[40m
sets the background color to blacke[47m
sets the background color to white0x20
is an ASCII space
UTF-8
There is also a UTF-8 mode (-t UTF8
). This mode uses the "half block" characters to increase the density, and cut the line count by half.
- ▀ - U+2580 / Upper Half Block
- ▄ - U+2584 / Lower Half Block
- █ - U+2588 / Full Block
Screenshot from @grawity (thanks)
qrencode -t UTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
qrencode -t ANSIUTF8 'https://superuser.com/questions/1420001/is-it-possible-to-write-a-qr-code'
edited yesterday
answered 2 days ago
AttieAttie
12.6k43547
12.6k43547
3
Don't forget-t UTF-8
mode, which uses the "box drawings" characters that OP mentions?
– grawity
2 days ago
8
i.imgur.com/WQYkxYm.png i.imgur.com/KeDVJ16.png – this uses "half block" characters▄
▀
█
, with optional colors to increase contrast only. (They're from Unicode 1.1 and date all the way to IBM DOS; surprised there's still any terminal that cannot render those...)
– grawity
2 days ago
1
No problem! It should work on Windows.. the project page mentions a Win32 port, that has an installer available for download... it looks like it was last updated in Feb 2015.
– Attie
2 days ago
6
@MuratKaçiran: Powershell and CMD are just command interpreters (shells), they both use the same "Windows Console" as the terminal. It too has received significant improvements in Win10.18xx. In the past, it did not support UTF-8 at all. It could do Unicode via UTF-16 with suitably written programs, but those programs had to deliberately use the special Unicode mode. If the program didn't do that, all you get is the MS-DOS era cp437 codepages... In that situation,qrencode -t UTF8 | iconv -f utf8 -t cp437
may still work, as the same box drawings also existed back then.
– grawity
yesterday
3
To my surprise, the QR reader app on my iphone successfully read all these off my screen, including the ASCII#
one. +1.
– Digital Trauma
7 hours ago
|
show 9 more comments
3
Don't forget-t UTF-8
mode, which uses the "box drawings" characters that OP mentions?
– grawity
2 days ago
8
i.imgur.com/WQYkxYm.png i.imgur.com/KeDVJ16.png – this uses "half block" characters▄
▀
█
, with optional colors to increase contrast only. (They're from Unicode 1.1 and date all the way to IBM DOS; surprised there's still any terminal that cannot render those...)
– grawity
2 days ago
1
No problem! It should work on Windows.. the project page mentions a Win32 port, that has an installer available for download... it looks like it was last updated in Feb 2015.
– Attie
2 days ago
6
@MuratKaçiran: Powershell and CMD are just command interpreters (shells), they both use the same "Windows Console" as the terminal. It too has received significant improvements in Win10.18xx. In the past, it did not support UTF-8 at all. It could do Unicode via UTF-16 with suitably written programs, but those programs had to deliberately use the special Unicode mode. If the program didn't do that, all you get is the MS-DOS era cp437 codepages... In that situation,qrencode -t UTF8 | iconv -f utf8 -t cp437
may still work, as the same box drawings also existed back then.
– grawity
yesterday
3
To my surprise, the QR reader app on my iphone successfully read all these off my screen, including the ASCII#
one. +1.
– Digital Trauma
7 hours ago
3
3
Don't forget
-t UTF-8
mode, which uses the "box drawings" characters that OP mentions?– grawity
2 days ago
Don't forget
-t UTF-8
mode, which uses the "box drawings" characters that OP mentions?– grawity
2 days ago
8
8
i.imgur.com/WQYkxYm.png i.imgur.com/KeDVJ16.png – this uses "half block" characters
▄
▀
█
, with optional colors to increase contrast only. (They're from Unicode 1.1 and date all the way to IBM DOS; surprised there's still any terminal that cannot render those...)– grawity
2 days ago
i.imgur.com/WQYkxYm.png i.imgur.com/KeDVJ16.png – this uses "half block" characters
▄
▀
█
, with optional colors to increase contrast only. (They're from Unicode 1.1 and date all the way to IBM DOS; surprised there's still any terminal that cannot render those...)– grawity
2 days ago
1
1
No problem! It should work on Windows.. the project page mentions a Win32 port, that has an installer available for download... it looks like it was last updated in Feb 2015.
– Attie
2 days ago
No problem! It should work on Windows.. the project page mentions a Win32 port, that has an installer available for download... it looks like it was last updated in Feb 2015.
– Attie
2 days ago
6
6
@MuratKaçiran: Powershell and CMD are just command interpreters (shells), they both use the same "Windows Console" as the terminal. It too has received significant improvements in Win10.18xx. In the past, it did not support UTF-8 at all. It could do Unicode via UTF-16 with suitably written programs, but those programs had to deliberately use the special Unicode mode. If the program didn't do that, all you get is the MS-DOS era cp437 codepages... In that situation,
qrencode -t UTF8 | iconv -f utf8 -t cp437
may still work, as the same box drawings also existed back then.– grawity
yesterday
@MuratKaçiran: Powershell and CMD are just command interpreters (shells), they both use the same "Windows Console" as the terminal. It too has received significant improvements in Win10.18xx. In the past, it did not support UTF-8 at all. It could do Unicode via UTF-16 with suitably written programs, but those programs had to deliberately use the special Unicode mode. If the program didn't do that, all you get is the MS-DOS era cp437 codepages... In that situation,
qrencode -t UTF8 | iconv -f utf8 -t cp437
may still work, as the same box drawings also existed back then.– grawity
yesterday
3
3
To my surprise, the QR reader app on my iphone successfully read all these off my screen, including the ASCII
#
one. +1.– Digital Trauma
7 hours ago
To my surprise, the QR reader app on my iphone successfully read all these off my screen, including the ASCII
#
one. +1.– Digital Trauma
7 hours ago
|
show 9 more comments
Murat Kaçiran is a new contributor. Be nice, and check out our Code of Conduct.
Murat Kaçiran is a new contributor. Be nice, and check out our Code of Conduct.
Murat Kaçiran is a new contributor. Be nice, and check out our Code of Conduct.
Murat Kaçiran is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1420001%2fis-it-possible-to-create-a-qr-code-using-text%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
6
Is there a specific project this is for? I'm just curious
– Ben Leggiero
yesterday
5
@BenLeggiero Thank you for your question. I don't have a certain project but I thought it would be handy to know the existence of such QR codes. For example, you can put those in a bio on a forum if the forum doesn't support profile pictures, and many more advantages.
– Murat Kaçiran
yesterday
At a small enough font size, you don't even need the black boxes!
– Paul D. Waite
8 hours ago