Case Converter Online
Caps lock left on through an entire email, a database column that needs snake_case formatting, a headline that needs proper Title Case capitalization. All ten conversions run from the same input below. Need just one format every time? The dedicated tools further down skip straight to it.
What this tool does
Paste any block of text above and switch between ten case formats without retyping anything. Five are standard writing formats: Sentence case, Title Case, UPPERCASE, lowercase, and Capitalize First. Five are developer formats used in code and file naming: camelCase, PascalCase, kebab-case, snake_case, and aLtErNaTiNg cAsE for the internet-meme use case.
Writing formats vs developer formats
Sentence case capitalizes only the first letter of each sentence, the standard for body text, captions, and most modern UI copy. Title Case capitalizes the major words in a heading while leaving small connecting words lowercase, the format used for headlines, book titles, and article titles. Capitalize First puts an uppercase letter at the start of every word, which differs from Title Case in that it does not apply any style rule about which words to skip.
camelCase and PascalCase both remove spaces and capitalize word boundaries, the difference being whether the first letter stays lowercase (camelCase, used for variables and function names) or uppercase (PascalCase, used for class names and components). kebab-case replaces spaces with hyphens, the standard for URL slugs and CSS class names. snake_case replaces spaces with underscores, common in Python, database column names, and config keys. If you are formatting a list of values for a SQL query or spreadsheet import after converting the case, the newline to comma tool turns the result into a single comma-separated line.
Client-side processing
Every conversion runs directly in your browser using JavaScript. Proprietary code, unpublished drafts, and confidential data are never uploaded to a server or stored anywhere. The conversion happens instantly because there is no round trip to wait for.