Case Converter
Turn sentence case into Title Case, or the reverse.
How to use it
- Type or paste your text into the input box.
- Click any of the case buttons to convert your text.
- The converted text appears in the output box below.
- Click "Copy" to copy the result to your clipboard.
Examples and use cases
Fixing accidental caps lock
Pasted text that was typed with Caps Lock on? Convert it to sentence case or lowercase in one click.
Creating headlines
Convert a draft headline to Title Case so every major word is capitalized consistently.
Formatting code identifiers
Convert a phrase to camelCase, snake_case, or kebab-case for use as variable or file names.
Preparing CSV headers
Standardize column names to a consistent case format before importing data.
Social media styling
Use alternating case or UPPERCASE for stylistic emphasis in posts.
Frequently asked questions
- What is title case?
- Title case capitalizes the first letter of each major word. Short words like "a," "an," "the," "and," "or," "in," "on," and "at" stay lowercase unless they are the first or last word.
- What is sentence case?
- Sentence case capitalizes only the first letter of the first word and any proper nouns. It reads like a normal sentence.
- What is camelCase?
- camelCase removes spaces and capitalizes the first letter of each word except the first. It is commonly used for variable names in JavaScript and Java.
- What is snake_case?
- snake_case replaces spaces with underscores and makes everything lowercase. It is common in Python and database column names.
- What is kebab-case?
- kebab-case replaces spaces with hyphens and makes everything lowercase. It is often used in URLs, CSS class names, and file names.
- Is my text stored or sent anywhere?
- No. The case converter runs entirely in your browser. Your text never leaves your device.
- Does title case handle small words correctly?
- Yes. Common short words (a, an, the, and, but, or, for, nor, in, on, at, to, by) are kept lowercase unless they start or end the title. This follows standard English title capitalization conventions.
- Can I convert code between naming conventions?
- Yes. The camelCase, snake_case, PascalCase, and kebab-case conversions handle multi-word phrases. For best results with existing code identifiers, the tool splits on common boundaries (spaces, underscores, hyphens, and camelCase transitions).
Related tools
Word & Character Counter
Count words, characters, sentences, and paragraphs in your text.
Word Unscrambler
Find all the words hiding in a jumble of letters.
Text Cleaner
Remove extra spaces, fix line breaks, strip smart quotes, and clean up hidden characters.
Readability Analyzer
Check Flesch-Kincaid score, grade level, and other readability metrics for your text.
Words by Pattern
Find words matching a letter pattern with wildcards. Great for crosswords and word games.
Lorem Ipsum Generator
Generate placeholder text in paragraphs, sentences, or words.
About this tool
Case conversion is one of those tasks that sounds trivial until you are staring at a wall of ALL-CAPS text or need to turn a sentence into a valid variable name. Text editors can do some of this, but not all of it, and not always quickly.
The Wordshed case converter handles the common cases — uppercase, lowercase, title, sentence — along with the developer-oriented formats like camelCase, PascalCase, snake_case, and kebab-case. Everything runs in your browser with no server involved.