TOOL
TEXT CASE CONVERTER
Convert text between any case instantly. UPPERCASE, lowercase, Title Case, camelCase, snake_case, and more.
CONVERT TO
FAQ
What is camelCase?
camelCase writes compound words with no spaces, starting with a lowercase letter, and
capitalizing each subsequent word: myVariableName. It's widely used in
JavaScript and most programming languages.
What is snake_case?
snake_case replaces spaces with underscores and uses all lowercase letters:
my_variable_name. Common in Python, SQL, and file naming conventions.