Text
Case Converter
Convert text between cases.
Result
โ
FAQ
- What is Title Case?
- Title Case capitalizes the first letter of every word (e.g. "the quick brown fox" becomes "The Quick Brown Fox"). It is commonly used for headings and book titles.
- What is the difference between camelCase and snake_case?
- camelCase joins words with no separator and capitalizes each word after the first (e.g. "myVariableName"), while snake_case joins words with underscores in all lowercase (e.g. "my_variable_name"). camelCase is common in JavaScript/Java; snake_case is common in Python and database schemas.
- Is my text sent to a server?
- No. All conversions happen entirely in your browser. Nothing is uploaded or stored.