Convert Unix file permissions between symbolic notation (rwxr-xr-x) and octal values (755) instantly. Toggle checkboxes for owner, group, and others visually.
| Entity | Read (r) | Write (w) | Execute (x) | Octal |
|---|---|---|---|---|
| Owner (u) | 7 | |||
| Group (g) | 5 | |||
| Others (o) | 5 |
755rwxr-xr-xchmod 755 filename-rwxr-xr-xThe Chmod Calculator converts Unix file permissions between human-readable symbolic notation (rwxr-xr-x) and octal values (e.g. 755) in real time. Toggle read, write, and execute checkboxes for the owner, group, and others sections and watch both representations update instantly. Ideal for system administrators and developers who need to set correct file permissions without memorising octal codes.
QWhat is the difference between 755 and rwxr-xr-x?
They represent the same permissions. 755 is octal notation; rwxr-xr-x is symbolic notation. Owner has read, write, execute; group and others have read and execute only.
QDoes the calculator support setuid, setgid, and the sticky bit?
Yes. Dedicated checkboxes let you toggle each special bit, and the resulting 4-digit octal value (e.g. 4755) is shown alongside the standard 3-digit form.
QCan I type an octal value directly?
Yes. Type any valid 3- or 4-digit octal value into the input field and the checkboxes and symbolic string update automatically.