Email Validator
Validate email address syntax and catch common domain typos like gmial.com. Check one address or a whole list at once โ 100% client-side, nothing uploaded.
Toggle read, write, and execute for owner, group, and other to see the octal value, the symbolic permission string, and a ready-to-copy chmod command.
A Chmod Calculator turns Unix file permissions into the numbers and commands you actually type in a terminal.
Tick the boxes for read, write, and execute across owner, group, and other, and it instantly shows the octal value, the symbolic rwx string, and a copy-ready chmod command.
Every permission has a value: read is 4, write is 2, and execute is 1.
You add those values within each group, so read plus execute becomes 5, and read plus write plus execute becomes 7.
Three groups sit side by side โ owner, group, and other โ which is why a mode like 755 has exactly three digits.
The calculator works either way you like to think about permissions.
Toggle the checkboxes to build a mode visually, or type an octal value such as 644 to set the boxes for you.
It runs entirely in your browser, so nothing you enter is uploaded or stored, and it keeps working offline once loaded.
Setting the right mode matters most when you deploy scripts and web files to a server.
A CGI script or a cron job often needs the execute bit, which pairs naturally with scheduling tasks using a Crontab Generator.
Web directories usually want 755 and files 644, the same permissions you protect further with rules from an Htaccess Generator.
And when you name deployment artifacts or lock files, a quick unique token from a UUID Generator keeps them from clashing.
It gives the owner read, write, and execute (7), and the group and other read and execute (5 and 5). In symbolic form that is rwxr-xr-x. It is the usual mode for directories and executable scripts that everyone may read and run but only the owner may change.
Octal uses three digits from 0 to 7, where each digit sums read (4), write (2), and execute (1) for owner, group, and other. Symbolic spells the same thing out as rwx letters or dashes. Both describe identical permissions, just in different notations.
Yes. Enter a three-digit octal such as 644 in the input box and the checkboxes update to match. This is handy when you already know the mode and just want the symbolic string or the full command.
No. The calculator runs completely in your browser with JavaScript. Nothing you toggle or type is uploaded, logged, or stored, and it continues to work offline after the page has loaded.