Text notation switcher
Also check out our:
Check out our Apify actor for web scraping.
Powered by Trafilatura, a battle-tested Python library that accurately extracts main content from web pages while filtering out boilerplate like navigation, ads, and sidebars.
Ideal for building RAG pipelines, training datasets, or content analysis at scale.
Did you know? Apify offers a free tier — you get $5 to use monthly.
Apify also has a super generous Creator plan (though you can run only your own actors) that costs just $1/month (billed $6 semi-annually) and includes a one-time $500 platform credit for your first 6 months — with up to 32 GB RAM and 32 concurrent actor runs.
Upper case
All letters are simply uppercased, no minuscules left.
Also called capitalised, proper case (by Visual Basic) or title case (by Python).
Lower case
All letters are simply lowercased, no capital letters left.
Spaceless upper case
All letters are uppercased, whitespace and punctuation are removed.
Spaceless lower case
All letters are lowercased, whitespace and punctuation are removed.
Camel case
Whitespace and punctuation are removed, words are separated by single capitalized letter while the first letter remains lowercase.
Also called camel caps or more formally medial capitals.
Pascal case
Like Camel case, whitespace and punctuation are removed, words are separated by single capitalized letter but the first letter is uppercase.
Also called upper camel case or bumpy case.
Kebab case
Whitespace and punctuation are removed, words are separated by hyphens.
Also called spinal case, param case, dash case or Lisp case (in reference to the Lisp programming language).
Snake case
All chars converted to lowercase, whitespace and punctuation are removed, words are separated by underscores.
Also called pothole case (by Python devs).
Screaming snake case
Like Snake case, but all chars converted to uppercase, whitespace and punctuation are removed, words are separated by underscores.