Text Case Converter
Convert text between different case formats
Output will appear here...
Case Conversion Formats
UPPERCASE: All letters converted to capital letters
lowercase: All letters converted to lowercase
Title Case: First letter of each word capitalized
camelCase: First word lowercase, subsequent words capitalized
snake_case: Words separated by underscores, all lowercase
kebab-case: Words separated by hyphens, all lowercase
Use Cases
- • Converting between programming conventions (camelCase vs snake_case)
- • Preparing text for headers or titles
- • Standardizing variable and function names
- • Formatting URLs and identifiers
Example
Original: hello world example
camelCase: helloWorldExample
snake_case: hello_world_example