TypeRider — shift your text into gear
// UPPER CASE
Transforms every letter to its capital form. Great for headings, acronyms and emphasis.
// Sentence Case
Capitalises the first word of each sentence — perfect for correcting pasted text.
// camelCase
No spaces, first word lowercase, subsequent words capitalised. Standard in JavaScript & Java.
// lower case
Converts every letter to lowercase. Useful for normalising text, URLs and case-insensitive comparisons.
// Title Case
Capitalises the first letter of every word. Ideal for headlines, titles and proper formatting.
// PascalCase
Every word capitalised, no separators. The standard naming convention for classes in C# and TypeScript.
// snake_case
Words separated by underscores, all lowercase. The default convention in Python & Ruby.
// kebab-case
Words joined by hyphens, all lowercase. Commonly used in CSS class names and URL slugs.
// CONSTANT_CASE
All uppercase with underscores. The standard for constants and environment variables in most languages.
// dot.case
Words separated by dots, all lowercase. Used in configuration keys, package names and file extensions.
// aLtErNaTiNg CaSe
Alternates between lowercase and uppercase characters. Popular for memes, sarcasm and stylised text.
// iNVERSE cASE
Flips existing capitalisation — uppercase becomes lowercase and vice versa. Quick way to fix accidental caps lock.