Case Converter
Convert text between letter cases and common programming naming styles.
Transforms apply to the text box in place. "Undo" restores your last typed version.
About each transform
- Title Case: capitalises the first letter of every word.
- Sentence case: capitalises only sentence starts (after
. ! ?). - camelCase / PascalCase: joins words (split on spaces,
_,-). - snake_case / kebab-case / CONSTANT_CASE: uses
_or-as the separator.
Non-Latin text is left as-is. Everything runs in your browser.
FAQ
- Turn snake_case into camelCase?
- Paste
user_first_nameand press "camelCase" to getuserFirstName.