kebab-case to camelCase Converter
Convert kebab-case to camelCase.
Try an example:
Converting kebab-case to camelCase
kebab-case uses hyphens between lowercase words; camelCase removes the separators and capitalizes each word after the first.
How to convert kebab-case to camelCase by hand
- Split the string at each hyphen.
- Lowercase the first word and capitalize the rest.
- Join the words with no separator.
Worked example
kebab-case-text → kebabCaseText
More converters
- camelCase to snake_case
- snake_case to camelCase
- camelCase to kebab-case
- snake_case to kebab-case
- Decimal to Binary
- Binary to Decimal
Frequently asked questions
How do I convert kebab-case to camelCase?
Split the string at each hyphen. Lowercase the first word and capitalize the rest. Join the words with no separator. Or just use the converter on this page — it does it instantly. Example: kebab-case-text becomes kebabCaseText.
What is kebab-case-text in camelcase?
kebab-case-text converts to kebabCaseText.
Is this converter free and private?
Yes — it is free and unlimited, and the conversion runs entirely in your browser, so nothing is uploaded to a server.