Convert text to camelCase — the standard format for JavaScript variables.
Click the input box and paste your text (Ctrl+V / Cmd+V), or click the Paste button.
Click the Convert button, or use the quick-convert buttons to switch between all nine case types instantly.
Click Copy to copy the result to your clipboard, or Download to save it as a .txt file.
Paste your text in the input box and click any case button. The conversion happens instantly in your browser — no upload, no server, no login needed.
Title Case capitalises the first letter of every major word (skipping articles and prepositions). Sentence case only capitalises the first word of each sentence, like standard written English.
No. You can paste entire documents, articles, or any amount of text. There are no limits whatsoever.
Yes. All conversion happens entirely in your browser using JavaScript. Your text is never sent to any server, saved, or shared.
Yes — use the quick-convert buttons below the editor to switch between all nine case types with one click. Your input text stays intact.
Short function words like "a", "an", "the", "and", "or", "but", "in", "on", "at", "to", "for" are kept lowercase in Title Case — unless they're the first word of the sentence.
Title Case skips short words like "a", "the", "and". Capital Case capitalises every single word without exception — including those short words. Use Capital Case when you need every word capitalised.
Inverse Case flips the case of every letter in your text. Uppercase letters become lowercase and lowercase letters become uppercase. So "Hello World" becomes "hELLO wORLD".
snake_case is a naming convention used in programming where spaces are replaced with underscores and all letters are lowercase. It's common in Python, file names, database columns, and URLs.
camelCase removes spaces and capitalises the first letter of each word except the first. It's the standard format for variable and function names in JavaScript, Java, and many other programming languages.