Case Converter
Convert your text to any case format instantly — UPPER CASE, lower case, Title Case, Sentence case, camelCase, snake_case, or kebab-case. Copy each output with one click.
UPPER CASE
lower case
Title Case
Sentence case
camelCase
snake_case
kebab-case
Frequently Asked Questions
What is camelCase used for?
camelCase (also called lowerCamelCase) is widely used in programming for variable names and function names, especially in JavaScript, Java, and C#. The first word is lowercase, and each subsequent word starts with an uppercase letter:
myVariableName.What is the difference between snake_case and kebab-case?
Both use all-lowercase words. snake_case separates words with underscores (used in Python, database column names, file names on Linux). kebab-case separates words with hyphens (used in HTML/CSS class names, URL slugs, and some CLI flags).
What is Sentence case vs. Title Case?
Sentence case capitalizes only the first letter of the first word in a sentence (like this sentence). Title Case capitalizes the first letter of every word. Title Case is used for headings, book titles, and headlines; sentence case is used in body text and UI labels.