RU

Case Converter Online

Free tool for converting text to camelCase, snake_case, kebab-case and more formats

case-converter
camelCase0 chars
Was this tool helpful?
aB

camelCase

Convert to camelCase and PascalCase

a_b

snake_case

Convert to snake_case and CONSTANT_CASE

a-b

kebab-case

Convert to kebab-case format

AB

UPPER_CASE

Convert to UPPERCASE and Title Case

Related Tools

Frequently Asked Questions

Case conversion is the process of transforming text from one naming style to another. For example, from regular text to camelCase, snake_case, kebab-case, or PascalCase. These formats are widely used in programming and web development.
In camelCase, words are joined together with each new word capitalized (myVariable). In snake_case, words are separated by underscores (my_variable). In PascalCase, every word including the first is capitalized (MyVariable).
camelCase is used for variables and functions in JavaScript, Java, and C#. snake_case is the standard in Python, Ruby, and SQL. kebab-case is used in URLs, CSS classes, and file names. PascalCase is for class and component names.
A case converter saves time when porting code between languages with different naming conventions. Instead of manually renaming dozens of variables, you can paste text and select the desired format.