Case Converter
Convert text between upper, lower, sentence, title, camel, snake and kebab case.
Every conversion appears below as you type — click any one to copy it.
Which case goes where
Title Case capitalises the important words and leaves short joining words like of, and and the lowercase unless they open or close the line — the convention used for headlines and article titles.
camelCase and PascalCase are for code: variables and functions usually take the first, classes and components the second. snake_case is common in Python and database columns, kebab-case in URLs and CSS class names, and CONSTANT_CASE for values that never change.