- What characters are unsafe?
- `/ \ : * ? " < > |` on Windows; `/` on Unix; control characters on every platform. The tool replaces them with a safe character (default `-`).
- Does it handle reserved names?
- Yes — Windows reserves names like CON, PRN, AUX, NUL, COM1–9, LPT1–9. The tool appends `-file` to make them valid on every platform.
- Are diacritics stripped?
- Optional. Default transliterates `café` → `cafe`. Toggle off to preserve accents (filesystems support them; some toolchains don't).
- How long should filenames be?
- Default cap is 255 characters (the filesystem limit on most platforms). Practical cap is ~100 characters for readability and cross-platform cloud storage.