Text Case Converter
Convert your identifier into 5 naming conventions at once. Each case has a copy button for fast workflow.
camelCase—
PascalCase—
snake_case—
kebab-case—
SCREAMING_SNAKE—
How to Use
- STEP 1
- Enter text in any format (camelCase, snake_case, spaces, etc.) — it's auto-detected.
- STEP 2
- Results appear in all 5 cases simultaneously.
- STEP 3
- Click the copy button next to any case to copy it to the clipboard.
Notes
- Japanese characters and emoji are not split as words.
- SCREAMING_SNAKE is uppercase snake_case (e.g. MY_VARIABLE).
Tips
1
Use kebab-case for HTTP headers, snake_case for Python variables.
2
SQL columns typically use snake_case; JavaScript variables use camelCase.
3
Quickly align variable names to your team's naming conventions.
FAQ
Q1
Do 'helloWorld' and 'hello world' produce the same result?
Yes. The tool auto-detects camelCase, PascalCase, snake_case, kebab-case, and spaces, so both yield identical results.
Q2
Is PascalCase the same as UpperCamelCase?
Yes. Both refer to capitalizing the first letter of every word (e.g. HelloWorld).
Q3
How are mixed-case words handled?
All characters are lowercased first, then formatted according to each case's rules.