- Which cases are supported?
- camelCase, PascalCase, snake_case, SCREAMING_SNAKE_CASE, kebab-case, Title Case, sentence case, UPPER, and lower.
- How do I convert a string to camelCase?
- Paste your text and read the camelCase row. Words are joined with no spaces, the first word is lowercase, and each following word is capitalised, so "user profile id" becomes "userProfileId".
- What is the difference between camelCase and PascalCase?
- Both remove spaces and capitalise each word. camelCase leaves the very first letter lowercase (userProfileId), while PascalCase capitalises it too (UserProfileId).
- How do I reverse camelCase back into words?
- Paste the camelCase (or PascalCase) string and pick sentence case or Title Case. The converter splits on the capital-letter boundaries, so "userProfileId" becomes "User Profile Id".
- Does it handle non-English text?
- Unicode letters are preserved, and diacritics are kept rather than stripped.
- Is my text sent anywhere?
- No. The conversion runs locally.