Case Converter
Type or paste your text below and click a button to convert its case.
About This Tool
Case Converter transforms text between multiple casing formats: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, and CONSTANT_CASE. It processes your entire text instantly with one click and supports copy-to-clipboard for each result. A time-saver for developers renaming variables and writers reformatting headings.
How It Works
Case conversion involves two phases: tokenization and reconstruction. First, the input text is split into individual words by detecting word boundaries — these include spaces, hyphens, underscores, and camelCase transitions (lowercase-to-uppercase). A regex like `/[A-Z]?[a-z]+|[A-Z]+(?=[A-Z][a-z]|\d|\b)|[A-Z]|\d+/g` captures each word token, including abbreviations and numbers.
Once tokenized, each casing format applies its own reconstruction rules: UPPERCASE calls `toUpperCase()` on every token and joins with the original separator. camelCase lowercases the first token and capitalizes the first letter of subsequent tokens, joining without separators. snake_case lowercases all tokens and joins with underscores. Title Case capitalizes the first letter of each word, with optional handling for articles and prepositions (a, an, the, of, in) to follow English title capitalization rules. Sentence case capitalizes only the first word and proper nouns. The converter preserves non-alphabetic characters (numbers, punctuation) in their original positions.
Related Articles
Why My 499-Word Essay Got Rejected: The Hidden Rules of Academic Word Counts
Why "hyphenated-words" sometimes count as one word and sometimes two, the real limits on abstracts and cover letters, and how to hit the exact count without filler.
2026-02-24firstName or first_name? The Naming Convention Guide That Ends the Debate
camelCase, snake_case, PascalCase, kebab-case — every team argues about it at some point. Here's what each format actually means, what the community conventions say per language, and how to convert between them without making everyone angry.
2026-04-23How to Copy 149,000 Unicode Symbols: The Complete Special Characters Guide
Windows Win+. is slow, Mac Character Viewer is hidden, and typing alt codes is painful. Here's the faster way to grab any symbol, emoji, or character in 2 seconds.