'How do I specify a label/path with special characters as 'ñ' in /etc/fstab?

I know that if a path has spaces one can encode it with \040:

Example for path:

"//server/folder with spaces"

fstab entry:

//server/folder\040with\040spaces /mnt/share/folder_local cifs nofail,credentials=/root/.credfile 0 0

But how to fill fstab if you have a path with non-English chars as 'ñ'?

Path example:

"//server/folderWith-ñ-char"

I've tried:

fstab entry:

//server/folderWith-\F1-char /mnt/share/folder_local cifs nofail,credentials=/root/.credfile 0 0

based on: https://www.degraeve.com/reference/urlencoding.php

but I get the error:

 mount -a
mount error(2): No such file or directory


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source