How to search query with "NOT like" "NOT starts with" "NOT ends with"

We found the documentation in forming query data using wildcard ‘%’.

We noticed that it supports Not Equal to like below:

Id => '~<>~123'

Is there a combination that supports “Not starts with” ?

We tried doing
Id => '~<>~123%'

, in which we expect it to work as “not starts with”. But it just returns null.