Convert Unix file permissions between numeric (755) and symbolic (rwxr-xr-x) formats.
Unix/Linux file permissions are defined for three groups: owner (user), group, and others. Each group has three bits: read (r=4), write (w=2), execute (x=1). The sum of set bits gives a number from 0 to 7.
Permissions 755 (rwxr-xr-x) give the owner full access while the group and others can only read and execute. Permissions 777 (rwxrwxrwx) allow everyone to read, write and execute. Using 777 on a web server is dangerous because it lets any user modify scripts. Use 755 for directories and executables, and reserve 777 only for temporary upload directories when strictly necessary.
Enter the symbolic string (e.g. rwxr--r--) in the symbolic format field. The calculator automatically converts it to the corresponding number (744 in this example). You can also tick the checkboxes for read, write and execute for each of the three groups — the numeric value updates instantly as you click.
For most WordPress directories (wp-content, wp-admin, wp-includes) the recommended permission is 755. This gives the owner full access and allows the group and others to read and execute. For individual files inside those directories, use 644. The uploads folder may require 777 if the server process runs as a different user than the file owner — consult your hosting provider's documentation before changing anything.