Convert text between naming conventions and letter cases in one click — camelCase, PascalCase, snake_case, kebab-case, slugs, and more.
Use it when renaming variables, cleaning API payloads, or standardizing copy before a commit.
Learn more
A practical guide to the three most common code naming conventions — when to use each, why they exist, and how to convert between them instantly.
Read article →camelCase joins words without spaces, capitalizing each word after the first. Example: "hello world" → "helloWorld". Used in JavaScript variable names.
snake_case uses lowercase words separated by underscores. Example: "hello world" → "hello_world". Common in Python and databases.
kebab-case uses lowercase words separated by hyphens. Example: "hello world" → "hello-world". Common in URLs and CSS class names.
camelCase starts lowercase ("helloWorld"), PascalCase starts uppercase ("HelloWorld"). PascalCase is used for class names in JavaScript, TypeScript, and C#.
Yes. All conversions run in your browser. No internet connection is needed after the page loads.