DEV
📝 Text Utilities
Text Case Converter
Convert text between popular case formats used in programming, writing, and design. Supports UPPERCASE, lowercase, Title Case, Sentence case, camelCase, snake_case, kebab-case, and CONSTANT_CASE.
How to Use
- Enter or paste your text in the input panel.
- Select your desired output format from the dropdown.
- Click Transform to convert the text.
- Click Copy to copy the result to your clipboard.
How It Works
Each case format uses a different transformation rule. UPPERCASE uses
toUpperCase(). camelCase removes spaces and capitalizes each word after the first. snake_case and kebab-case replace spaces with underscores or hyphens respectively.