top | item 46290718 (no title) djfobbz | 2 months ago When I use the following constraints: ^.{6,8}$ [0-9] [A-Z] [a-z] I get: F7o d1A 𑐟Ku9 𑍞4𢗏Rw I𦢺2r I don't think those block chars should be there. Am I missing something? discuss order hn newest ngruhn|2 months ago It picks characters from the whole unicode range. Those strings should indeed match all regex constraints. You can add a constraint like: ^[\x21-\x7E]*$ To only choose printable ASCII characters.EDIT: no you're right, there is a bug. I would expect random unicode chars but not always the same box. ngruhn|2 months ago Actually no again, I think the browser can just not render those.
ngruhn|2 months ago It picks characters from the whole unicode range. Those strings should indeed match all regex constraints. You can add a constraint like: ^[\x21-\x7E]*$ To only choose printable ASCII characters.EDIT: no you're right, there is a bug. I would expect random unicode chars but not always the same box. ngruhn|2 months ago Actually no again, I think the browser can just not render those.
ngruhn|2 months ago
EDIT: no you're right, there is a bug. I would expect random unicode chars but not always the same box.
ngruhn|2 months ago