Convert your text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, and snake_case.
Convert my text ↓"Case" refers to how letters are capitalized and how words are joined. UPPERCASE makes every letter capital, useful for emphasis, headers, or acronyms. lowercase makes every letter small, often used for casual text or usernames. Title Case capitalizes the first letter of each major word, the standard for headlines, book titles, and article headings. Sentence case capitalizes only the first letter of each sentence, matching normal prose. camelCase and snake_case are programming conventions: camelCase joins words with no spaces and capitalizes each word after the first (like firstName), while snake_case joins words with underscores in all lowercase (like first_name).
In writing, inconsistent capitalization looks unpolished and can even change meaning (compare "March" the month with "march" the verb). In code, casing is not just style - many languages are case-sensitive, so a variable named userName is a completely different identifier from username. Following your team or language's casing convention consistently makes code easier to read, search, and maintain, and it is one of the first things reviewers notice in a pull request.
Title Case and Sentence case both rely on detecting word and sentence boundaries: Title Case capitalizes the first letter of every space-separated word, while Sentence case finds the start of each sentence (after a period, question mark, or exclamation point) and capitalizes just that first letter, lowercasing the rest. camelCase and snake_case first split your text into individual words (ignoring existing punctuation and spacing), then rejoin them using each format's own rule.