Instantly generate TypeScript interfaces from JSON objects.
Create beautiful images of your code snippets for sharing.
Format and beautify your SQL queries.
Visually build and explain cron job schedules.
Generate SEO meta tags for your website.
Beautify and format XML strings.
Need to hit a specific word count for an article or essay? A Word Counter is a simple but essential tool for writers.
Master Linux file permissions without the math. The Chmod Calculator lets you visually set read, write, and execute permissions for users, groups, and others. It instantly generates the correct numeric (octal) code (e.g., 755) and the symbolic notation (rwxr-xr-x), so you can secure your files correctly.
Linux permissions can be confusing. `chmod` (change mode) uses a 3-digit number to define permissions. The first digit is for the Owner, the second for the Group, and the third for Everyone else. Each digit is the sum of permissions: Read (4) + Write (2) + Execute (1). This tool does that addition for you.
Unix file systems treat permissions as bits. Read is the 4-bit, Write is the 2-bit, and Execute is the 1-bit. By adding these values (e.g., 4+2+1 = 7), the system knows exactly what access is allowed. This calculator is essentially a visual binary-to-octal converter specific to file modes.
`755` is common for directories and scripts (owner can do everything; others can only read/execute). `644` is standard for files (owner can write; others can only read).
It means everyone can read, write, and execute the file. This is generally insecure and should be avoided on public servers.
Open your terminal and paste the generated line, followed by your filename. E.g., `chmod 755 myscript.sh`.
All calculations and data processing for this tool are performed locally in your browser. UtilToolkits does not send any of your data to an external server, ensuring your information remains private and secure.
Octal
755Symbolic
-rwxr-xr-xchmod 755 filenameEach digit is the sum: read=4 ยท write=2 ยท execute=1. Order is owner ยท group ยท public.