Why Convert Text Case?
Different contexts require different text casing:
Supported Case Formats
| Format | Example |
|--------|---------|
| UPPERCASE | HELLO WORLD |
| lowercase | hello world |
| Title Case | Hello World |
| Sentence case | Hello world |
| camelCase | helloWorld |
| PascalCase | HelloWorld |
| snake_case | hello_world |
| CONSTANT_CASE | HELLO_WORLD |
| kebab-case | hello-world |
| dot.case | hello.world |
| path/case | hello/world |
How to Use
Developer Use Cases
Variable Naming
Convert between naming conventions when switching between languages.
CSS to JS
Convert kebab-case CSS properties to camelCase for JavaScript style objects.
API Integration
Transform API response keys from snake_case to camelCase for your frontend.
Content Formatting
Convert titles, headings, and labels to the correct case format.