Text & writing / TOOLKIT
Case Converter
Convert text between eight common cases - perfect for code, titles and social posts.
Free to use · No account needed
How to use
- Type or paste your text.
- All eight conversions appear instantly below the input.
- Click the copy button next to any result to use it.
Convert text between uppercase, lowercase, title case, camelCase, snake_case and more. Normalize user input, match code conventions, or reformat imported data in seconds. Ideal for developers, writers and data cleaners.
Use cases
1. Use case: Normalize database fields Convert inconsistent legacy data (MixedCase, UPPER, snake_case) into a single format before importing it.
2. Use case: Write API payloads Quickly convert a heading like 'user profile settings' into camelCase for JSON keys: userProfileSettings.
Practical tips
Sentence case and title case are not interchangeable for headlines: title case capitalizes minor words differently by style guide, and proper nouns can end up lowercased by naive converters. Developers should double-check camelCase and snake_case output for acronyms, which rarely split cleanly. Line breaks are preserved, so converting a whole document keeps its paragraph structure — scan the preview before copying the result wholesale. Like every tool on this site, the Case Converter runs entirely in your browser: the data you enter never leaves your device, nothing is uploaded to a server, and the tool keeps working if your connection drops.
Common mistakes
The output is mechanical, so the mistakes are predictable:
- Pasting formatted text from a word processor without checking that special characters (curly quotes, em dashes) survived the clipboard trip.
- Assuming Title Case is one standard: APA, Chicago and journalistic style capitalize minor words differently, so a headline that passes one guide fails another.
- Converting identifiers like camelCase or snake_case when acronyms are present — a token like parseHTTPResponse does not split cleanly on case boundaries.
- Trusting sentence case to fix proper nouns: it only capitalizes sentence starts, so a wrongly lowercased brand name stays wrong.
Why use this tool
A dedicated converter earns its keep when:
- A whole document needs consistent casing, not just one headline.
- You want to compare the result with the original side by side before committing.
- The text mixes code identifiers with prose and you must convert one without touching the other.
- You need deterministic output — the tool applies its rules identically every time, where manual re-typing drifts.
Frequently asked questions
Does the Case Converter send my data anywhere?
No. It runs entirely in your browser — your input is processed on your device and never uploaded. Refresh the page and it still works offline.