You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nikolay Kasyanov
56337dfbfe
|
4 years ago | |
---|---|---|
.. | ||
LICENSE | 4 years ago | |
README.md | 4 years ago | |
generator.go | 4 years ago | |
go.mod | 4 years ago |
README.md
UnicodeCharsGenerator
Ever seen some of these weird looking Unicode characters on the Internet ? Time to find more )
Usage
There are 2 flags to specify - -inline
and -limit
-inline
flag takes an integer. If not negative - each line in the output file will contain specified number of characters
-limit
flag takes an integer. If not negative - the output file will contain all Unicode characters up to specified one
Examples
-inline
./UnicodeCharsGenerator -inline=20
- the generated output file will try to contain 20 characters in one line./UnicodeCharsGenerator -inline=-1
- all characters will be put in one line./UnicodeCharsGenerator
- as in 2., all characters will be put in one line
-limit
./UnicodeCharsGenerator -limit=20000
- the generated output file will contain all Unicode characters up to 20000 one./UnicodeCharsGenerator -limit=-727
- the limit is ignored and you will get all 10FFFF Unicode characters
general
./UnicodeCharsGenerator
- all Unicode characters, all in one line./UnicodeCharsGenerator -limit=900 -inline=5
- 900 first characters, only 5 characters on one line