Case Converter
Transform text between uppercase, lowercase, sentence case, title case, and inverted case.
Case Converter
This case converter transforms text between five common capitalization styles: upper case, lower case, sentence case, title case, and inverted case. It is useful when you need to reformat text for headlines, documents, code comments, or any situation where consistent casing matters.
The conversion runs locally in your browser. The text you paste into the editor is not uploaded, stored, or sent to a server, so you can use the tool for quick checks without changing your workflow.
How to use
- Paste or type your text into the input editor.
- Click one of the five conversion buttons: UPPER CASE, lower case, Sentence case, Title Case, or Invert Case.
- The text in the editor is converted in place. Use Copy for the clipboard, Download for a text file, or Clear to reset the editor.
What are the different case styles?
UPPER CASE converts every letter to its uppercase form. lower case converts every letter to its lowercase form. Sentence case capitalizes the first letter of each sentence and lowercases the rest. Title Case capitalizes the first letter of every word. Invert Case swaps the case of every character, turning upper into lower and vice versa.
Input notes
The tool works with any text, including Unicode characters. Sentence case uses periods, exclamation marks, and question marks as sentence boundaries. Title case capitalizes every word without exceptions for articles or prepositions.
Example
See how the same sentence looks in each case style:
--- Original --- hello world! this is a test sentence. --- UPPER CASE --- HELLO WORLD! THIS IS A TEST SENTENCE. --- lower case --- hello world! this is a test sentence. --- Sentence case --- Hello world! This is a test sentence. --- Title Case --- Hello World! This Is A Test Sentence. --- Invert Case --- HELLO WORLD! THIS IS A TEST SENTENCE.
MCP integration
MCP (Model Context Protocol) lets AI agents and apps discover and run Coding.Tools utilities for repeatable conversions, formatting, hashing, and generation workflows.
MCP tool name: case-converter
MCP endpoint: https://coding.tools/mcp
Call tools/list first. Each tool entry includes inputSchema, outputSchema, and examples so an AI agent or client can build valid arguments without guessing.
For tools/call, read result.content[0].text for the display value and result.structuredContent for machine parsing. Tool-level failures return isError: true; protocol failures return a JSON-RPC error.
Example tools/call request:
curl -s https://coding.tools/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "MCP-Protocol-Version: 2025-06-18" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"case-converter","arguments":{"input":"quarterly revenue report","options":{"mode":"title"}}}}'
Most text and data tools accept an input string plus optional options. Browser-only image tools are listed for discovery and return a web UI link when they need browser image APIs.