TOOL
TEXT CASE CONVERTER
Convert text between any case instantly. UPPERCASE, lowercase, Title Case, camelCase, snake_case, and more.
CONVERT TO
RELATED TOOLS
Word Counter
Count words, characters, sentences, and paragraphs instantly. Paste any text and get clean stats.
Base64 Encoder / Decoder
Encode or decode Base64 strings directly in the browser. Nothing leaves your machine.
JSON Formatter
Paste JSON to format, validate, and minify it instantly. Syntax errors highlighted. Runs in your browser.
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.