Text Case Converter
Free online text case converter. Convert plain text into camelCase, snake_case, kebab-case, PascalCase, and more instantly.
Text Case Converter
Common Programming Text Cases
- camelCase: Used for variables and functions in JavaScript/TypeScript and Java (e.g.,
myVariable). - PascalCase: Used for Classes and React Components (e.g.,
MyComponent). - snake_case: Used heavily in Python, Ruby, and database column names (e.g.,
my_variable). - kebab-case: Used for URLs, CSS class names, and HTML attributes (e.g.,
my-css-class). - CONSTANT_CASE: Used for immutable constants across many languages (e.g.,
MAX_RETRIES).