how do i use these unicode characters in my password
#3
the easiest way is to use hexcharset but for this you will need to convert these chars first

see https://www.utf8-zeichentabelle.de/unico...e.pl?names=-

for example the following singns and its hex expression

¶ is c2 b6
§ is c2 a7
© is c2 a9
Æ ic c3 86
be aware, as hashcat works on bytesize, to crack a single © you have to use a mask of length 2 like this:

to crack Byt6op125© (for humans 10 chars, but for hashcat its 11 bytes as © is bytesize 2)

--hex-charset -1 c2c3 -2 86a7a9b6 Byt6op125?1?2
Reply


Messages In This Thread
RE: how do i use these unicode characters in my password - by Snoopy - 05-25-2023, 11:28 AM