Pascal Case to Kebab Case Converter

Turn PascalCase identifiers such as UserProfileImage into kebab-case such as user-profile-image.

Free, private, and processed in your browser.

Detected: snake_case
kebab-case output
user-profile-image-url

All naming formats

camelCase
userProfileImageUrl
PascalCase
UserProfileImageUrl
snake_case
user_profile_image_url
kebab-case
user-profile-image-url
CONSTANT_CASE
USER_PROFILE_IMAGE_URL
dot.case
user.profile.image.url
path/case
user/profile/image/url

Conversion happens locally in your browser. Your input is not sent to a conversion server.

Examples

InputOutput
UserProfileImageuser-profile-image
CreatedAtcreated-at
ApiResponseUrlapi-response-url

How this converter works

Paste text or an identifier above. The tool detects word boundaries and common separators, then formats the result using the selected naming convention.

  • PascalCase word boundaries are detected before separators are inserted.
  • Words are normalized to lowercase and joined with hyphens.

Common use cases

Create slugs, custom element names, or CSS-style identifiers from class and component names.

Normalize PascalCase generated code names for tooling that expects hyphenated values.