About Case Converter
Title Case and Sentence case are the two that need checking. Short words, acronyms and proper nouns follow no single rule, so read the result before trusting it on names, brands or anything with an initialism in it.
Instantly switch text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase and more. It is the fast way to fix shouty headings, normalise data, rename variables or tidy up copy pasted from different sources.
It also works as a distraction-free scratch pad: paste, transform, copy, move on. camelCase and snake_case round-trip cleanly, but Title Case does not — capitalisation rules discard information that converting back cannot recover.
Programming conventions are the other half of this job, and they are not interchangeable. camelCase belongs to JavaScript and Java variables, PascalCase to classes and components, snake_case to Python variables and database columns, SCREAMING_SNAKE_CASE to constants and environment variables, and kebab-case to URLs, CSS classes and filenames. Converting between them is constant work when data crosses a boundary — an API returning snake_case into a codebase that expects camelCase, for instance.
One direction loses information permanently. camelCase and snake_case describe the same word boundaries, so they convert back and forth cleanly. Title Case does not record where the boundaries were, and lowercasing an acronym destroys it: NASA becomes nasa, and nothing can tell a converter to restore the capitals rather than produce Nasa. Keep the original if you might need to go back.
Common use cases
- Developers renaming variables when moving data between a snake_case API and a camelCase codebase.
- Editors fixing a heading that arrived in all caps, without retyping it and introducing new typos.
- Data analysts normalising a column of inconsistently capitalised names or categories before grouping on it.
- Content teams applying a house style across a batch of titles pasted from several sources.
- Anyone who has just realised a paragraph was typed with caps lock on and would rather not start again.