Code Case Converter
Convert a variable or function name between camelCase, PascalCase, snake_case, CONSTANT_CASE, kebab-case, dot.case and Title Case, all at once.
camelCase
userProfileImageUrl
PascalCase
UserProfileImageUrl
snake_case
user_profile_image_url
CONSTANT_CASE
USER_PROFILE_IMAGE_URL
kebab-case
user-profile-image-url
Title Case
User Profile Image Url
dot.case
user.profile.image.url
Frequently asked questions
Which programming naming conventions does this cover?+
camelCase and PascalCase (common in JavaScript, Java, and C#), snake_case and CONSTANT_CASE (common in Python and environment variables), and kebab-case (common in URLs and CSS classes).
Can I paste an already-mixed-case name?+
Yes, it detects word boundaries from camelCase humps, underscores, hyphens, dots, and spaces, however your input is formatted.
Does it handle acronyms like "userID" correctly?+
It splits on transitions from lowercase to uppercase and from an acronym run into a new capitalized word, which handles most common acronym patterns correctly.