inyourbrowser.com

Chmod calculator

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.

ReadWriteExecuteValue
Owner7 (rwx)
Group5 (r-x)
Other5 (r-x)
NUMERIC (OCTAL)
Type to update checkboxes
SYMBOLIC
rwxr-xr-x
chmod 755 filename
BINARY BREAKDOWN
Owner
111
Group
101
Other
101

Dedicated pages

Direct links for file permission topics.

How to calculate chmod permissions

  1. Tick the read, write, and execute checkboxes for Owner, Group, and Other.
  2. The numeric (octal) and symbolic permission strings update instantly.
  3. Or type an octal value like 755 directly into the number input to set the checkboxes.
  4. Copy the numeric or symbolic value to use in a chmod command.

Common uses

Technical specification

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.