Unix Permission Calculator
Convert between numeric and symbolic permissions
Enter 3 or 4 digit octal (000-7777)
Quick Reference
Result
Permission breakdown
Numeric
755
Symbolic
rwxr-xr-x
Command
chmod 755 filePermission Breakdown
Owner: read, write, execute | Group: read, execute | Others: read, execute
Owner
r
rw
wx
xGroup
r
r-
wx
xOthers
r
r-
wx
xUnix permissions control file access. Numeric (755) uses octal: read=4, write=2, execute=1. Symbolic (rwxr-xr-x) shows permissions for owner, group, and others.