Convert
Case Converter
Convert text to nine common cases — camelCase, snake_case, Title Case and more — with per-line statistics. Paste once, copy whichever variant you need.
Convert
Convert text to nine common cases — camelCase, snake_case, Title Case and more — with per-line statistics. Paste once, copy whichever variant you need.
Walkthrough
Use cases
Naming things. Turn database column names into JavaScript identifiers (snake_case → camelCase) and back.
Consistent UI copy. Normalize titles, headings and dropdown labels to Title Case before shipping.
Clean data entry. Strip uneven caps from pasted user lists when preparing fixtures or CSV files.
FAQ
It splits on everything that isn’t a letter or digit: spaces, dashes, underscores, punctuation and camelCase boundaries. Upper and lower cases apply character-for-character; the word-based cases split and re-join with the right separator.
No. Every conversion runs inside this page via JavaScript. All processing is local, so you can paste sensitive strings with confidence, and nothing is logged.
It is the conventional spelling for environment variables, build targets and compile-time constants (APP_ROOT, MAX_CONNECTIONS). It is snake_case uppercased.
Related