🐪

Naming Converter

Enter any variable name style — auto-detects word boundaries and generates all six naming formats simultaneously.

✏️

Enter a variable name above to convert to all 6 formats

📖 Format Reference

myVariableNamecamelCase
MyVariableNamePascalCase
my_variable_namesnake_case
MY_VARIABLE_NAMESCREAMING_SNAKE_CASE
my-variable-namekebab-case
My_Variable_NamePascal_Snake_Case

❓ FAQ

What input formats are supported?

Auto-detects camelCase, PascalCase, snake_case, kebab-case and space-separated words. Mixed formats like my_Variable-Name are also correctly split.

How are acronyms like URL or ID handled?

Consecutive uppercase letters are treated as one word. For example: parseURL → [parse, URL], which becomes parse_url in snake_case.