How to add unicode characters to a password?

Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I am trying to have more stronger passwords, one idea of which is to add a unicode character is password. While I use something on the lines of
$ apg -a 1 -M SNCL -n 3 -m 20
I don't know a way to add unicode characters to the mix. I do have unicode fonts and do know that unicode has had several releases. I am ok with the character set in version 1.0 itself
https://en.wikipedia.org/wiki/Unicode#Versions
This would be for generating passwords for sites where you need persistent personality/avatar.
Any help would be appreciated.
debian password unicode
add a comment |Â
up vote
2
down vote
favorite
I am trying to have more stronger passwords, one idea of which is to add a unicode character is password. While I use something on the lines of
$ apg -a 1 -M SNCL -n 3 -m 20
I don't know a way to add unicode characters to the mix. I do have unicode fonts and do know that unicode has had several releases. I am ok with the character set in version 1.0 itself
https://en.wikipedia.org/wiki/Unicode#Versions
This would be for generating passwords for sites where you need persistent personality/avatar.
Any help would be appreciated.
debian password unicode
I donâÂÂt see that it would be IMPOSSIBLE, since it is encoded to native chars in the password file. I donâÂÂt believe login supports it natively, which would be problematic
â Stan Strum
Jan 5 at 22:45
I was thinking more about website passwords rather than login to the shell but that is also a good point. Updated my query as well.
â shirish
Jan 5 at 22:50
Umm.. just type them in when you set your password?
â psusi
Jan 5 at 23:58
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am trying to have more stronger passwords, one idea of which is to add a unicode character is password. While I use something on the lines of
$ apg -a 1 -M SNCL -n 3 -m 20
I don't know a way to add unicode characters to the mix. I do have unicode fonts and do know that unicode has had several releases. I am ok with the character set in version 1.0 itself
https://en.wikipedia.org/wiki/Unicode#Versions
This would be for generating passwords for sites where you need persistent personality/avatar.
Any help would be appreciated.
debian password unicode
I am trying to have more stronger passwords, one idea of which is to add a unicode character is password. While I use something on the lines of
$ apg -a 1 -M SNCL -n 3 -m 20
I don't know a way to add unicode characters to the mix. I do have unicode fonts and do know that unicode has had several releases. I am ok with the character set in version 1.0 itself
https://en.wikipedia.org/wiki/Unicode#Versions
This would be for generating passwords for sites where you need persistent personality/avatar.
Any help would be appreciated.
debian password unicode
edited Jan 6 at 9:07
GAD3R
22.5k154894
22.5k154894
asked Jan 5 at 22:39
shirish
3,28342273
3,28342273
I donâÂÂt see that it would be IMPOSSIBLE, since it is encoded to native chars in the password file. I donâÂÂt believe login supports it natively, which would be problematic
â Stan Strum
Jan 5 at 22:45
I was thinking more about website passwords rather than login to the shell but that is also a good point. Updated my query as well.
â shirish
Jan 5 at 22:50
Umm.. just type them in when you set your password?
â psusi
Jan 5 at 23:58
add a comment |Â
I donâÂÂt see that it would be IMPOSSIBLE, since it is encoded to native chars in the password file. I donâÂÂt believe login supports it natively, which would be problematic
â Stan Strum
Jan 5 at 22:45
I was thinking more about website passwords rather than login to the shell but that is also a good point. Updated my query as well.
â shirish
Jan 5 at 22:50
Umm.. just type them in when you set your password?
â psusi
Jan 5 at 23:58
I donâÂÂt see that it would be IMPOSSIBLE, since it is encoded to native chars in the password file. I donâÂÂt believe login supports it natively, which would be problematic
â Stan Strum
Jan 5 at 22:45
I donâÂÂt see that it would be IMPOSSIBLE, since it is encoded to native chars in the password file. I donâÂÂt believe login supports it natively, which would be problematic
â Stan Strum
Jan 5 at 22:45
I was thinking more about website passwords rather than login to the shell but that is also a good point. Updated my query as well.
â shirish
Jan 5 at 22:50
I was thinking more about website passwords rather than login to the shell but that is also a good point. Updated my query as well.
â shirish
Jan 5 at 22:50
Umm.. just type them in when you set your password?
â psusi
Jan 5 at 23:58
Umm.. just type them in when you set your password?
â psusi
Jan 5 at 23:58
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
If you have the right codepage active (UTF-8), you can do this in theory (at least in an graphical terminal), but it's really not recommended. The problem is that you can end up trying to enter your password where the codepage doesn't contain the character that you're trying to input, which is a little bit of a problem.
It's better to follow good password creation rules (at least 12 characters, mix of uppercase, lowercase, numbers and symbols, and random) and stick with ASCII-printable characters: the extra characters provided by Unicode probably don't outweigh the issues you can face when you can't enter your password because the system doesn't allow half your password to be input!
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
If you have the right codepage active (UTF-8), you can do this in theory (at least in an graphical terminal), but it's really not recommended. The problem is that you can end up trying to enter your password where the codepage doesn't contain the character that you're trying to input, which is a little bit of a problem.
It's better to follow good password creation rules (at least 12 characters, mix of uppercase, lowercase, numbers and symbols, and random) and stick with ASCII-printable characters: the extra characters provided by Unicode probably don't outweigh the issues you can face when you can't enter your password because the system doesn't allow half your password to be input!
add a comment |Â
up vote
2
down vote
If you have the right codepage active (UTF-8), you can do this in theory (at least in an graphical terminal), but it's really not recommended. The problem is that you can end up trying to enter your password where the codepage doesn't contain the character that you're trying to input, which is a little bit of a problem.
It's better to follow good password creation rules (at least 12 characters, mix of uppercase, lowercase, numbers and symbols, and random) and stick with ASCII-printable characters: the extra characters provided by Unicode probably don't outweigh the issues you can face when you can't enter your password because the system doesn't allow half your password to be input!
add a comment |Â
up vote
2
down vote
up vote
2
down vote
If you have the right codepage active (UTF-8), you can do this in theory (at least in an graphical terminal), but it's really not recommended. The problem is that you can end up trying to enter your password where the codepage doesn't contain the character that you're trying to input, which is a little bit of a problem.
It's better to follow good password creation rules (at least 12 characters, mix of uppercase, lowercase, numbers and symbols, and random) and stick with ASCII-printable characters: the extra characters provided by Unicode probably don't outweigh the issues you can face when you can't enter your password because the system doesn't allow half your password to be input!
If you have the right codepage active (UTF-8), you can do this in theory (at least in an graphical terminal), but it's really not recommended. The problem is that you can end up trying to enter your password where the codepage doesn't contain the character that you're trying to input, which is a little bit of a problem.
It's better to follow good password creation rules (at least 12 characters, mix of uppercase, lowercase, numbers and symbols, and random) and stick with ASCII-printable characters: the extra characters provided by Unicode probably don't outweigh the issues you can face when you can't enter your password because the system doesn't allow half your password to be input!
answered Jan 6 at 1:48
ErikF
2,7461413
2,7461413
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f415106%2fhow-to-add-unicode-characters-to-a-password%23new-answer', 'question_page');
);
Post as a guest
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
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
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
I donâÂÂt see that it would be IMPOSSIBLE, since it is encoded to native chars in the password file. I donâÂÂt believe login supports it natively, which would be problematic
â Stan Strum
Jan 5 at 22:45
I was thinking more about website passwords rather than login to the shell but that is also a good point. Updated my query as well.
â shirish
Jan 5 at 22:50
Umm.. just type them in when you set your password?
â psusi
Jan 5 at 23:58