I don't know if there is an easier way or not, but you can do it with bash. with ls -i you can also see inodes,
$ ls -i 11147622 file.txt
the first column is the index number, the hit command shows the inodes in the current directory
$ ls -i | awk {'print $1'}
so you need to check inodes from / all its subdirectories until you find it
ls -iR /
it shows all subdirectories and there are files with inode number
now you must start with / and use the awk or cut command to have the first column (the inode number is in the first column) and then compare it with the inode you want to find.
source share