Snake Case to Kebab Case Converter

Turn snake_case identifiers such as user_profile_image 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
user_profile_imageuser-profile-image
created_atcreated-at
api_response_urlapi-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.

  • Underscores are treated as word boundaries and replaced with hyphens.
  • Words are normalized to lowercase in the kebab-case result.

Common use cases

Convert backend or database-style snake_case names into URL-, CSS-, or config-friendly kebab-case.

Normalize generated identifiers before using them in slugs, custom element names, or tooling conventions.