Switch text between six common casing styles at once — the same tool covers writing (Title Case, Sentence case) and coding conventions (camelCase, snake_case) rather than needing separate tools for each.
Title Case and Sentence case are for prose — headings, article titles, UI labels. camelCase and snake_case are for identifiers — variable names, function names, database columns — where spaces aren't allowed and the casing itself carries the word boundaries.
camelCase: JavaScript, Java, C# variables and functions
snake_case: Python and Ruby variables, SQL column names
PascalCase (not covered here, capitalize every word with no separator): class names in most
languages
Need word/character counts too? Try the Word Counter.
100% client-side — your text never leaves your browser.