Convert text into camelCase / snake_case / kebab-case / PascalCase and other naming conventions at once
Case conversion means rewriting a string made of several words to match the naming conventions (cases) used in programming. For example, a phrase meaning "user name" becomes userName in camelCase, user_name in snake_case, and user-name in kebab-case, adjusting the separators and capitalization to fit each use.
Both mark word boundaries with capital letters, but they differ in the first character. camelCase starts with a lowercase letter (e.g. userName) and is commonly used for variable and function names. PascalCase (upper camel case) capitalizes the first letter too (e.g. UserName) and is commonly used for class and type names.
No. Splitting your string into words and converting it to each case happens entirely in JavaScript inside your browser. Your input is never sent to or stored on a server.