Case and Slug Converter
Convert text into camelCase, PascalCase, snake_case, kebab-case, and URL slugs.
Processed locally
This tool runs in the browser.
camelCase
helloWorldDeveloper
PascalCase
HelloWorldDeveloper
snake_case
hello_world_developer
kebab-case
hello-world-developer
URL slug
hello-world-developer
CONSTANT_CASE
HELLO_WORLD_DEVELOPER
About Text Case and Slugs
Programming languages use different naming styles for variables, functions, and files.
Use camelCase and PascalCase for JavaScript and TypeScript identifiers.
Use snake_case for Python identifiers and database columns.
Use kebab-case and URL slugs for web paths, filenames, and CSS class names.