Convert text to UPPERCASE, lowercase, Title Case, camelCase, snake_case and more.
A case converter is a free text tool that converts any text between multiple capitalisation formats instantly. Whether you need UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case or kebab-case — this tool handles all conversions with a single click.
Convert variable names between camelCase, PascalCase and snake_case for different programming languages.
Fix capitalisation errors in blog posts, articles and social media content.
Convert article titles to slug format (kebab-case) for clean SEO-friendly URLs.
Standardise inconsistent capitalisation in databases, spreadsheets and form submissions.
Title Case capitalises the first letter of every major word. Articles (a, an, the), conjunctions and prepositions are usually kept lowercase unless they start the title.
camelCase joins words with no spaces, with every word after the first starting with a capital letter. Used in JavaScript and Java. Example: myVariableName.
snake_case joins words with underscores, all lowercase. Used in Python, Ruby and database column names. Example: my_variable_name.
PascalCase is like camelCase but the first word is also capitalised. Used for class names in most programming languages. Example: MyClassName.