Kebab Case Converter
Convert phrases, camelCase, and snake_case to kebab-case in your browser.
Tool workspace
Conversion runs in your browser. Nothing you paste is sent to our servers.
How it works
Each word is lowercased and joined with hyphens (hello world → hello-world, fooBar → foo-bar, foo_bar_baz → foo-bar-baz).
Results update as you type (light debounce) or when you press Convert. Empty input produces an empty result—no error.
Locale note: letter case uses the browser’s String.toLowerCase() (and UTF-8 mb_strtolower mirrors in Domain tests).
Examples
- hello world → hello-world
- fooBar → foo-bar
- foo_bar_baz → foo-bar-baz
- AlreadyCamelCase → already-camel-case
Privacy
FAQ
Is my text uploaded to a server?
No. Kebab case conversion runs entirely in your browser. Pasted content is not sent to Nova Engine.
Do I need an account?
No. All published tools work for guests without login.
How is this different from snake_case?
kebab-case joins words with hyphens (hello-world). snake_case joins with underscores (hello_world). Both use the same word-splitting rules.