Case Converter
Paste your text, click a style, copy the result.
When each case is used
Title Case capitalizes the first letter of every word and is standard for headlines. Sentence case capitalizes only the first word of each sentence. camelCase and snake_case are naming conventions in programming — camelCase dominates in JavaScript and Java, snake_case in Python. kebab-case is common in URLs and CSS class names.
Frequently asked questions
Does the converter handle accented characters?
Yes — conversions use Unicode-aware string functions, so letters like é, ü and ñ convert correctly.