Case Converter
Convert text between UPPER, lower, Title, camelCase, snake_case and more.
Results appear as you type
Everything runs locally in your browser β your input never leaves this page.
About the Case Converter
The Case Converter transforms text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, snake_case, kebab-case and more with a single click. It saves you from manually retyping variable names, headings or slugs in a different convention. Conversion happens entirely in your browser, so your text never leaves your device.
How to use
- Paste the text you want to reformat.
- Select the target case style.
- View the converted text immediately.
- Copy the result for use in code, content or URLs.
Frequently asked questions
- What is the difference between camelCase and snake_case?
- camelCase joins words with no spaces and capitalizes each word after the first (myVariableName), while snake_case lowercases everything and separates words with underscores (my_variable_name). Both are common in programming.
- What is kebab-case used for?
- kebab-case lowercases words and joins them with hyphens (my-page-slug). It is widely used for URLs, CSS class names and file names.
- Does Title Case capitalize every word?
- Title Case capitalizes the principal words; many styles leave small words like 'and' or 'of' lowercase. Sentence case, by contrast, only capitalizes the first word and proper nouns.