Online Toolbox/Other/Name Generator

Name Generator

Generate names based on Chinese numerology.

Name Generator

Description

Variable Naming Convention Converter transforms identifiers between camelCase, snake_case, PascalCase, kebab-case, and other styles.

Use Cases

1

Development: Convert naming conventions between languages

2

Code review: Standardize variable names

3

Migration: Adapt code to new language conventions

4

Learning: Understand different naming styles

5

Refactoring: Bulk rename identifiers

Instructions

1

Enter a variable or function name

2

Select the source naming convention

3

Choose the target naming convention

4

View all converted formats

5

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

Q

Which convention should I use?

A

Follow your language or framework convention: camelCase for JS/Java, snake_case for Python/Ruby, PascalCase for C#.

Q

Can I convert multiple names at once?

A

Currently single name conversion is supported. Batch conversion may be added later.