Text Case Converter
Transform your text into Uppercase, Lowercase, Title Case, camelCase, snake_case, and more with a single click.
Input Text
Result
Understanding Text Cases
Different text cases serve different purposes in writing and programming. Whether you are formatting a headline, naming variables in code, or cleaning up messy data, choosing the right case is essential.
Title Case
Capitalizes the first letter of every major word.
Use for: Headlines, Book Titles, Movie Names.
camelCase
First word lowercase, subsequent words capitalized. No spaces.
Use for: JavaScript, Java, Swift variables.
snake_case
All lowercase separated by underscores.
Use for: Python variables, Database fields.
kebab-case
All lowercase separated by hyphens.
Use for: URL slugs, CSS classes.