๐Ÿ”ค Text Utility

Case Converter

Convert text to any case format instantly โ€” uppercase, lowercase, title case, camelCase, snake_case, kebab-case, and more.

Choose a case format
Output
๐ŸŽฏ

9 Case Formats

UPPER, lower, Title, Sentence, camelCase, PascalCase, snake_case, kebab-case, and alternating.

โšก

Instant Conversion

Text is converted in real-time as you type โ€” no need to press any button.

๐Ÿ‘จโ€๐Ÿ’ป

Developer Friendly

camelCase, PascalCase, snake_case, and kebab-case for code naming conventions.

๐Ÿ”’

Private & Offline

All processing is done locally in your browser. Your text never leaves your device.

Frequently Asked Questions

What is camelCase?โ–ผ
camelCase is a naming convention where the first word is lowercase and each subsequent word starts with an uppercase letter (e.g., myVariableName). It is commonly used in JavaScript and many other programming languages.
What is snake_case?โ–ผ
snake_case uses underscores to separate words, with all letters in lowercase (e.g., my_variable_name). It is popular in Python and database column names.
What is title case?โ–ผ
Title case capitalizes the first letter of each major word. Short function words like 'a', 'an', 'the', 'and', 'but' are typically not capitalized unless they are the first word.
What is kebab-case?โ–ผ
Kebab-case uses hyphens to separate words, with all letters in lowercase (e.g., my-variable-name). It is commonly used in URLs, CSS class names, and HTML attributes.
What is the difference between sentence case and title case?โ–ผ
Sentence case only capitalizes the first letter of the first word. Title case capitalizes the first letter of most words. Sentence case is used in regular writing; title case is used in headings.