Convert text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, and CONSTANT_CASE — all at once.
Standard title case capitalizes the first and last words plus all major words, while lowercasing short articles, conjunctions, and prepositions like "a", "the", "of", "and", "in". This follows AP and Chicago style conventions.
camelCase starts with a lowercase letter (myVariableName); PascalCase capitalizes every word, including the first (MyVariableName). camelCase is conventional for JavaScript variables; PascalCase for class names in most languages.
snake_case is standard for Python variables, database columns, and many config files. kebab-case is standard for URLs, CSS classes, and HTML attributes. Most languages forbid hyphens in identifiers, which is why snake_case dominates code.