About Case Converter
The Case Converter transforms text between eight styles — UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case and kebab-case — in a single click. Paste text once and convert it to any style without retyping, making it useful for anyone who needs to reformat text quickly: writers fixing text that arrived in all caps, editors applying headline capitalization, and developers renaming identifiers as code moves between languages and conventions.
Common scenarios include cleaning up a press release or email that was typed with caps-lock stuck on, converting a spreadsheet column of names into consistent Title Case before a mail merge, and — for developers — turning a Python variable like 'user_first_name' (snake_case) into the camelCase 'userFirstName' a JavaScript function expects, or into the kebab-case 'user-first-name' a CSS class or URL parameter needs. Because the case converter handles multi-line and long text instantly, it works just as well converting a single label as it does an entire file of extracted strings pasted in at once.
Under the hood, camelCase and PascalCase conversion first splits the input on spaces, hyphens, underscores and existing case boundaries to recover the individual words, then rejoins them with the target capitalization — which is why it correctly handles mixed input like 'user_first-name' or 'UserFirstName' rather than only clean, space-separated text. Sentence case capitalizes the first letter after sentence-ending punctuation rather than just the first letter of the whole string, so multi-sentence paragraphs convert correctly rather than only the opening word. All conversion happens instantly in your browser.
One caveat: Title Case here capitalizes every word, which is the simplest and most common convention, but strict editorial style guides like AP or Chicago lowercase short conjunctions and prepositions ('and', 'of', 'the') within a title — for that level of precision, review the result manually after converting.
How to Use the Case Converter
- Paste or type your text into the input box.
- Click the case style you want (e.g. Title Case or snake_case).
- Copy the converted result with one click.
Features
- Eight case styles including camelCase, snake_case and kebab-case
- Instant conversion with one click
- Handles multi-line text and long documents
- One-click copy of the result
Examples
Converting to snake_case
Input
Hello World Example
Output
hello_world_example
Converting to camelCase
Input
user first name
Output
userFirstName
Fixing accidental caps lock
Input
THIS WAS TYPED WITH CAPS LOCK ON
Output
This was typed with caps lock on
Frequently Asked Questions
What is the difference between camelCase and PascalCase?
camelCase starts with a lowercase letter (myVariableName) and is common for variables in JavaScript and Java. PascalCase capitalizes every word including the first (MyClassName) and is typically used for class and type names.
How does Title Case handle small words?
Title Case capitalizes the first letter of each word. For strict editorial styles (AP, Chicago) you may still want to lowercase short conjunctions and prepositions manually.
Can I convert snake_case directly to camelCase?
Yes — paste the snake_case text and choose camelCase (or PascalCase, or kebab-case). The converter recognizes underscores, hyphens and existing capitalization as word boundaries, so it converts correctly between any of the eight styles in one step.
Is the Case Converter free?
Yes, the Case Converter is completely free with no usage limits. No signup, no account and no installation required.
Is my data safe?
Yes. All processing happens locally in your browser using JavaScript — nothing you type is uploaded or stored on our servers.
Related Tools
Word Counter
Count words, characters, sentences and paragraphs in real time. Free online word counter for essays, tweets and SEO content.
Text Diff
Compare two texts and highlight the differences line by line. Free online diff checker — runs entirely in your browser.
Lorem Ipsum Generator
Generate placeholder Lorem Ipsum text by words, sentences or paragraphs for mockups and designs. Free and instant.
Text to Slug
Turn any title into a clean, SEO-friendly URL slug — lowercase, hyphenated and free of accents or special characters.
JSON Formatter
Format, validate and beautify JSON online. Free JSON formatter with indentation options and key sorting — runs entirely in your browser.
Plagiarism Checker (Text Compare)
Compare two texts for duplicate content — get an overall similarity score and a list of near-identical sentences. Private, client-side checking.
Remove Line Breaks
Strip line breaks from text and join it into a single paragraph or line. Free online tool to remove line breaks — replace with a space, comma or nothing.
Whitespace / Extra Space Remover
Remove extra spaces, trim lines and delete blank lines from text in one click. Free online whitespace remover for messy pasted text.