because it's a Linux based piece of software, and Linux doesn't care about such things (paths are sequences of bytes). shell handling does require extra attention, that's why tools like find and xargs have special modes:
$ find . -iname "*001D9C7A*" -print0 | xargs -0 ls -lha
-rw-r--r-- 1...