Name Generator
Description
Variable Naming Convention Converter transforms identifiers between camelCase, snake_case, PascalCase, kebab-case, and other styles.
Use Cases
Development: Convert naming conventions between languages
Code review: Standardize variable names
Migration: Adapt code to new language conventions
Learning: Understand different naming styles
Refactoring: Bulk rename identifiers
Instructions
Enter a variable or function name
Select the source naming convention
Choose the target naming convention
View all converted formats
Copy the desired format
Notes
- camelCase: firstName (JavaScript, Java)
- snake_case: first_name (Python, Ruby)
- PascalCase: FirstName (C#, TypeScript classes)
- kebab-case: first-name (CSS, URLs)
FAQ
Which convention should I use?
Follow your language or framework convention: camelCase for JS/Java, snake_case for Python/Ruby, PascalCase for C#.
Can I convert multiple names at once?
Currently single name conversion is supported. Batch conversion may be added later.