In the UNIX/Linux system, name-garbled files are generated in some cases. It’s hard to operate on such kind of files via their file names.
Based on the implementation of the UNIX/Linux file system, each file is associated with inodes. We can operate on any file with inode as an alternative.
$ ls -il
total 125252
...
200556696 -rwxr-xr-x 1 x x 676 Mar 30 15:20 common.sh
...
$ find . -inum 200556696 -exec rm {} \;