💻 Programmer Tool Suite

Developer Case & Slug Converters

Format phrases into programming variable conventions: camelCase, PascalCase, snake_case, kebab-case (URL slug), CONSTANT_CASE, dot.case, and path/case.

Tokens/Words: 0
Lines: 0
Characters: 0
Code safely: all special symbols and unwanted spaces are cleanly removed.

Programmer Naming Conventions Cheat Sheet

Different programming languages, frameworks, and database engines follow strict naming conventions:

Case Style Sample Output Primary Use Cases
camelCase firstName JavaScript, TypeScript, Java variables, method names
PascalCase UserProfile React components, C# classes, TypeScript types, Python classes
snake_case created_at Python variables/functions, SQL table columns, Rust functions
kebab-case page-header-title CSS class names, HTML attributes, URL slugs, REST endpoints
CONSTANT_CASE API_SECRET_KEY Environment variables, constants, enum keys in C, Java, Go, JS
dot.case config.database.port YAML properties, nested object keys, i18n locale keys