Text Case Converter
Convert your text to different cases, including uppercase, lowercase, title case, and more.
Input Text
Conversion Options
Converted Text
Characters
0
Words
0
Lines
0
Action completed!
How to Use the Text Case Converter
Whether you're a writer tidying up a headline, a developer formatting variables, or just need to fix capitalization, this tool provides a quick and easy way to convert your text to the exact case you need.
A Simple 3-Step Process
- Input Your Text: Simply type or paste the text you wish to convert into the Input Text box on the left.
- Select a Case: Click on one of the Conversion Options buttons to choose your desired format. The selected case will be highlighted.
- Convert and Use: Click the main "Convert Text" button. Your transformed text will instantly appear in the Converted Text box, where you can see live stats and either copy it to your clipboard or download it as a text file.
Understanding the Different Cases
For Writing & Titles
- Sentence case: The standard for most writing. It capitalizes only the first letter of the first word of each sentence.
- lower case: Converts every letter to its lowercase form.
- UPPER CASE: Converts every letter to its uppercase form, often used for emphasis or in headlines.
- Title Case: Capitalizes the first letter of each major word. This is the standard for headlines, titles, and subtitles.
For Programming & Code
- camelCase: Words are joined without spaces, with the first letter of every word after the first being capitalized (e.g.,
myVariableName
). Common in JavaScript. - PascalCase: Similar to camelCase, but the first word is also capitalized (e.g.,
MyClassName
). Often used for class names. - snake_case: All words are lowercase and separated by underscores (e.g.,
my_variable_name
). Popular in Python and databases. - kebab-case: All words are lowercase and separated by hyphens (e.g.,
my-css-class
). Commonly used in URLs and CSS.