String Case Converter
Convert text between different naming conventions: camelCase, kebab-case, snake_case, and more.

💡 Keyboard shortcuts: Ctrl+K to focus, Esc to clear

Converted Formats

9 formats

camelCase

firstWord

helloWorld

PascalCase

FirstWord

HelloWorld

kebab-case

first-word

hello-world

snake_case

first_word

hello_world

CONSTANT_CASE

FIRST_WORD

HELLO_WORLD

Sentence case

First word

Hello world

lowercase

first word

hello world

UPPERCASE

FIRST WORD

HELLO WORLD

Title Case

First Word

Hello World

Common Use Cases

  • • camelCase: JavaScript variables, CSS class names
  • • PascalCase: JavaScript classes, React components
  • • kebab-case: CSS class names, file names, URLs
  • • snake_case: Python variables, database columns
  • • CONSTANT_CASE: Environment variables, constants
MyDevTools - Essential Tools for Developers