The developer tools you reach for every day, all in one place.

Converters, formatters, hashes, validators, and the small utilities you keep reopening stay together instead of getting lost across tabs.

GitHub

/ Tools

/ Tool Finder
109 tools
/ Chmod Calculator

Enter 3 digits (0-7), e.g., 755, 644, 777

Use r (read), w (write), x (execute), - (none)

RoleRead (4)Write (2)Execute (1)ValueSymbolic
owner4217rwx
group4-15r-x
other4-15r-x
/ Selected Tool

Chmod Calculator

Convert between numeric and symbolic Unix file permissions

01

What is chmod?

chmod (change mode) is a Unix/Linux command used to change file and directory permissions. Permissions control who can read, write, or execute a file. This calculator helps you convert between numeric (octal) and symbol…

02

How does it work?

Permission Types Read (r = 4) - View file contents or list directory Write (w = 2) - Modify file or add/remove files in directory Execute (x = 1) - Run file as program or access directory Permission Groups Owner (User)…

03

Sample Cases

Covers 755 - Standard directory, 644 - Standard file, and 700 - Private directory so you can compare common inputs and outputs quickly.

/ Code

/ Integration

Source code from the selected tool, shown here alongside the live version on the right.

/ Source Code
TypeScript
typescript
// Chmod permission calculator in TypeScript
// No external dependencies required

interface PermissionSet {
  read: boolean;
  write: boolean;
  execute: boolean;
}

interface Permissions {
Buidl Now icon

Keep every utility in one place and stay inside the build flow.

Pick a tool, finish the check, copy what you need, and get back to the actual product work.

Developer tools for builders who ship fast.© 2026 Buidl Now. All rights reserved.