Free random code generator

Patterns documentation

Back to the generator

When defining the permissible character sets of which the code is to consist, you can directly enter the characters you wish to be included or use patterns. Below is a list of the allowed patterns that may be used, together with their name and the exact list of the character set they contain.

Allowed patterns list

\\ - Backslash
\
\d - All digits
0123456789
\o - Odd digits
13579
\e - Even digits
02468
\l - Small letters
abcdefghijklmnopqrstuvwxyz
\L - Capital letters
ABCDEFGHIJKLMNOPQRSTUVWXYZ
\v - Small vowels
aeiouy
\V - Capital vowels
AEIOUY
\c - Small consonants
bcdfghjklmnpqrstvwxz
\C - Capital consonants
BCDFGHJKLMNPQRSTVWXZ
\h - Small hexadecimal
0123456789abcdef
\H - Capital hexadecimal
0123456789ABCDEF
\s - Small safe characters
369bcdhkmnprswxyz
\S - Capital safe characters
369CEFHKLMNPRWXY
\@ - Symbols
!"#$%&'()*+,-./:;<=>?@[]^_`{|}~