Mini-example:
How to find all names with special characters?
-
Debugger
- Posts: 719
- Joined: Thu Jan 26, 2017 11:56 am
How to find all names with special characters?
How to find all names with special characters, there are a lot of them, etc.
Mini-example:

❤✌
🕪




♨♔
ஜீ ۞
ஜீ✿ • .¸

Mini-example:
-
void
- Developer
- Posts: 19899
- Joined: Fri Oct 16, 2009 11:31 pm
Re: How to find all names with special characters?
In Everything, search for:
diacritics:<
|
|❤|✌|
|
|🕪|
|
|
|
|
|
|♨|♔|
|
|
|
|ஜீ|۞|
|ஜீ|✿|•|¸|
|
>
diacritics:<
-
Debugger
- Posts: 719
- Joined: Thu Jan 26, 2017 11:56 am
Re: How to find all names with special characters?
void - But I gave only a few characters, how to find all on the disk? For example, several thousand Specjal Chars (but I do not know them)
-
void
- Developer
- Posts: 19899
- Joined: Fri Oct 16, 2009 11:31 pm
Re: How to find all names with special characters?
What is a special character?
Unicode blocks:
https://en.wikipedia.org/wiki/Unicode_block
Emoticons:
regex:[\x{1F600}-\x{1F64F}]
Miscellaneous Symbols and Pictographs:
regex:[\x{1F300}-\x{1F5ff}]
Unicode blocks:
https://en.wikipedia.org/wiki/Unicode_block
Emoticons:
regex:[\x{1F600}-\x{1F64F}]
Miscellaneous Symbols and Pictographs:
regex:[\x{1F300}-\x{1F5ff}]
-
Debugger
- Posts: 719
- Joined: Thu Jan 26, 2017 11:56 am
Re: How to find all names with special characters?
void wrote: Wed Dec 26, 2018 8:48 am What is a special character?
Unicode blocks:
https://en.wikipedia.org/wiki/Unicode_block
Emoticons:
regex:[\x{1F600}-\x{1F64F}]
Miscellaneous Symbols and Pictographs:
regex:[\x{1F300}-\x{1F5ff}]
The first regex works with Everything.
The second regex does not find anything, but OK.
Otherwise, both regexes do not work in another MasterSeeker application:
Error Exception: - Not enough hexadecimal digits.
It does not work for the regular expression engine in the MasterSeeker program
-
tuska
- Posts: 1385
- Joined: Thu Jul 13, 2017 9:14 am
Re: How to find all names with special characters?
void wrote:Miscellaneous Symbols and Pictographs:
regex:[\x{1F300}-\x{1F5ff}]
Search for:Debugger wrote:The second regex does not find anything