What is this tool?
Convert text between standard typographic and programming cases: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, and kebab-case.
When to use it?
Format code variable names, standardize database column names, clean spreadsheet titles, or convert text casings for headlines.
How does it work?
Tokenizes words using delimiter and casing boundaries, applying case transformation rules to each token before joining with the target delimiter.
Example Conversions
User account profile settings
camelCase: userAccountProfileSettings snake_case: user_account_profile_settings kebab-case: user-account-profile-settings
Frequently Asked Questions
camelCase starts with a lowercase letter and capitalizes subsequent words (e.g. userProfile). PascalCase capitalizes all words including the first (e.g. UserProfile).