Text Case Converter
Convert text to uppercase, lowercase, title case, sentence case, and more.
1
Words: 0
Characters: 0
Select a case to apply:
About this tool
- What is title case?
- Title case capitalises the first letter of each word in the text. For example, "the quick brown fox" becomes "The Quick Brown Fox". It is commonly used for headings, article titles, and book titles.
- What is sentence case?
- Sentence case capitalises only the first letter of the first word in the text (and leaves the rest lowercase). For example, "THE QUICK BROWN FOX" becomes "The quick brown fox". It mirrors normal prose writing.
- What is camelCase?
- camelCase joins all words together with no spaces and capitalises the first letter of each word except the first. For example, "hello world example" becomes "helloWorldExample". It is widely used in JavaScript and other programming languages for variable and function names.
- What is the difference between snake_case and kebab-case?
- Both formats replace spaces with a separator and use lowercase letters. snake_case uses an underscore (_) as the separator (e.g. "hello_world") and is common in Python and database column names. kebab-case uses a hyphen (-) as the separator (e.g. "hello-world") and is common in CSS, HTML attributes, and URLs.
- Is my text sent to a server?
- No. All text transformations run entirely in your browser using JavaScript. Your text is never uploaded to any server and never stored anywhere.