🔤 Naming Case Converter
Convert text between camelCase, snake_case, PascalCase, kebab-case, and more — instantly.
Naming Convention Reference
camelCase
First word lowercase, subsequent words capitalized. Common in JavaScript, Java, and Swift variables. Example: myVariableName
PascalCase
Every word capitalized. Used for class names and components in most languages. Example: MyClassName
snake_case
Words joined by underscores, all lowercase. Standard in Python, Ruby, and SQL. Example: my_variable_name
kebab-case
Words joined by hyphens, all lowercase. Used in URLs, CSS class names, and HTML attributes. Example: my-variable-name
CONSTANT_CASE
All uppercase with underscores. Used for constants and environment variables. Example: MY_CONSTANT_VALUE
dot.case
Words joined by dots, all lowercase. Common in config keys and package names. Example: my.variable.name
Train-Case
Words capitalized and joined by hyphens. Used in HTTP headers. Example: My-Variable-Name
flatcase
All lowercase, no separator. Compact form used in some package names. Example: myvariablename