Finding files with ~ (tilde) in their name

I've read the info in the help about file pattern names, but I still can't figure out how to find all files with ~ in their name. Please help.

You need to escape the tilde with an apostrophe like this:

'~

That works, thank you.

Is it possible to limit a search for tildes as the first character in a file name.

'~ gives me tildes as the first character in a file name and tildes anywhere in the name.

I just want file names where the the first character is a tilde.

Use the Advanced find mode if you don't want partial matches.

I use this:

'~*

That gives me files with tilde as first character.