Skip to content

Text tools

Case Converter

Fifteen conversions in one place — the everyday ones like sentence and title case, the programming ones like camelCase and snake_case, and the useful oddities like URL slugs and inverse case. Paste, click, copy.

15 conversionsEditorial title caseSlug generatorNothing uploaded
Loading converter…

All fifteen conversions

Conversion“hello world example”Typical use
UPPER CASEHELLO WORLD EXAMPLEHeadings, emphasis, labels
lower casehello world exampleNormalising input
Sentence caseHello world exampleBody copy, descriptions
Capitalise Each WordHello World ExampleNames, form labels
Title CaseHello World ExampleArticle and page titles
camelCasehelloWorldExampleJS / Java variables
PascalCaseHelloWorldExampleClasses, React components
snake_casehello_world_examplePython, SQL columns
CONSTANT_CASEHELLO_WORLD_EXAMPLEEnv vars, constants
kebab-casehello-world-exampleCSS classes, filenames
dot.casehello.world.exampleConfig keys, namespaces
url-slughello-world-examplePage URLs
aLtErNaTiNghElLo WoRlD eXaMpLeMemes, emphasis
iNVERSE cASEHELLO WORLD EXAMPLEFixing caps-lock mistakes
Reversedelpmaxe dlrow ollehPuzzles, testing

Title case is not one rule

Style guides disagree about which words stay lowercase. The convention used here is close to AP style: articles, coordinating conjunctions and short prepositions stay lowercase unless they are the first or last word. Chicago style capitalises all prepositions of five letters or more, so “Through” would be capitalised there but not here. Pick one and apply it consistently — the inconsistency is far more visible than the choice.

Slugs and why they matter for SEO

A URL slug should be short, readable and stable. Strip stop words where they add nothing, keep the primary keyword, and never change a slug after publishing without redirecting the old one. Accented characters and spaces get percent-encoded into unreadable escapes, which is why the slug converter strips them.

Fixing a caps-lock accident

If you typed a whole paragraph with caps lock on and shift held down, every letter is inverted — lowercase where it should be capital and vice versa. That is exactly what iNVERSE cASE repairs in one click, rather than retyping the paragraph.

Related text tools

The word counter gives live word, character and reading-time statistics, the lorem ipsum generator produces placeholder copy for layouts, and the password generator handles secure strings — all of them client-side.

Answers

Frequently asked questions

Capitalise Each Word capitalises everything, including “and”, “of” and “the”. Title Case follows editorial style: minor words stay lowercase unless they are first or last. “The lord of the rings” becomes The Lord of the Rings in title case, but The Lord Of The Rings if you capitalise every word.

camelCase for JavaScript and Java variables, PascalCase for classes and React components, snake_case for Python and SQL, CONSTANT_CASE for environment variables and constants, and kebab-case for CSS classes, HTML attributes and file names.

Yes. Word boundaries are detected from capital letters as well as spaces, underscores, hyphens and dots — so "myVariableName" converts cleanly to "my_variable_name" or "my-variable-name" without you separating it first.

It strips accents, lowercases everything, replaces every run of non-alphanumeric characters with a single hyphen, and trims hyphens from the ends. “Café & Bar — Menu 2026” becomes cafe-bar-menu-2026, which is safe in a URL and readable in a search result.

Yes — press "Use as input" and the result becomes the new source text, so you can apply a second transformation on top of the first.

No. The conversion happens in your browser. Nothing is uploaded, logged or stored — which matters if you are pasting anything confidential.

Need a different sheet?

Everything on this site is free, runs in your browser and exports print-ready PDF. Browse the full index and take what you need.