Case Converter
Convert text between UPPER, lower, Title, camelCase, snake_case, and more.
The Case Converter transforms text between multiple casing styles in real time. Supports UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, and dot.case. Essential for code refactoring, naming conventions, and content formatting.
text
0 chars1 lines
Related Tools
FAQ
- What case formats are supported?
- UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, and dot.case.
- What is the difference between camelCase and PascalCase?
- camelCase starts with a lowercase letter (myVariableName), while PascalCase starts with an uppercase letter (MyClassName). Both capitalize subsequent words.
- When should I use snake_case vs kebab-case?
- snake_case is common in Python, Ruby, and SQL. kebab-case is used in URLs, CSS class names, and HTML attributes. The choice depends on your language and context.