oh, you are right. I actually didn't test it and just noticed the , (the only thing that I escaped).
The correct syntax, according to the custom charset definition wiki is that you also have to escape all question mark (?? means literal ?, such that someone can write ??1 for a literal "?1" etc)
the working line is this:
Again, this is all mentioned within the wiki. My mistake was to just copy paste the characters from ?s and only remove the space and escape the "," (I should have also escaped the ? with ??).
The correct syntax, according to the custom charset definition wiki is that you also have to escape all question mark (?? means literal ?, such that someone can write ??1 for a literal "?1" etc)
the working line is this:
Quote:!"#$%&'()*+\,-./:;<=>??@[\\]^_`{|}~,?d?d?d?d?l?u?l?u?l?1
Again, this is all mentioned within the wiki. My mistake was to just copy paste the characters from ?s and only remove the space and escape the "," (I should have also escaped the ? with ??).