Chmod calculator is a developer tool that converts Unix file permissions between visual checkboxes, octal numbers, and symbolic notation. It updates all three views as you tick read, write, or execute bits for owner, group, and other, and accepts direct numeric input like 755. The tool runs in your browser.
Frequently asked questions
- What does 755 mean in chmod?
- 755 means owner has read, write, and execute (7); group has read and execute (5); others have read and execute (5). The symbolic equivalent is rwxr-xr-x.
- What permissions should a web file have?
- Typically 644 (rw-r--r--) for files and 755 (rwxr-xr-x) for directories. Executable scripts may need 755. Avoid 777, it grants write access to everyone.
- Is my data sent to a server?
- No. All permission calculations are pure JavaScript running in your browser.
- What is the difference between the numeric and symbolic format?
- The numeric (octal) format uses digits 0 to 7. The symbolic format uses letters (r, w, x) and dashes. Both describe the same permissions, use whichever is required by your system or documentation.
Reviewed and tested May 25, 2026.