Input Text
Characters0
Words0
Lines0
Convert To
Frequently Asked Questions
What is the difference between the case formats?
UPPERCASE makes all letters capital, lowercase makes all letters small, Title Case capitalizes the first letter of each word, and Sentence case capitalizes only the first letter of each sentence.
What are camelCase and PascalCase?
camelCase starts with a lowercase letter and capitalizes subsequent words (like "myVariableName"), while PascalCase capitalizes the first letter of every word (like "MyVariableName").
When should I use snake_case vs kebab-case?
snake_case is commonly used in programming languages like Python and Ruby, while kebab-case is often used in CSS class names and URL slugs.
Can I chain multiple conversions?
Yes, you can apply multiple conversions in sequence. Each conversion will modify the text that's currently in the input box, so you can combine different transformations.