Case Converters
Convert text between sentence case, title case, uppercase, lowercase, and developer naming styles—camelCase, PascalCase, snake_case, kebab-case, and more. Every tool runs in your browser.
Writing and publishing case styles
Sentence case and title case are the everyday choices for blog posts, emails, and headlines. Uppercase and lowercase help when Caps Lock was on or when you need URL-safe slugs. Capitalized, alternating, and inverse case each solve a specific cleanup job.
Developer naming conventions
camelCase fits JavaScript variables, PascalCase fits React components and classes, snake_case fits Python and SQL columns, and kebab-case fits URL paths and CSS classes. CONSTANT_CASE and dot.case cover env vars and namespaced config keys.
Which case should I use?
Use sentence case for paragraphs, emails, and most UI copy. Use title case for headlines, blog post titles, and slide titles. Use uppercase sparingly for labels or fixing caps-lock mistakes. Use lowercase before URL slugs or when normalizing messy input. For code, match your language: camelCase for JavaScript variables, PascalCase for classes and components, snake_case for Python and SQL, kebab-case for URLs and CSS classes, and CONSTANT_CASE for environment variables.
Pick one tool per job
Each converter on this page targets one capitalization rule. Chain tools when you need to normalize shouting input to lowercase, then title-case only the headline. Read the comparison guides on the blog when you are unsure which style your style guide expects.
Case format comparison
| Format | Example | Common use |
|---|---|---|
| UPPERCASE | HELLO WORLD | Labels, emphasis, fixing caps-lock |
| lowercase | hello world | URLs, normalization before other styles |
| Title Case | Hello World | Headlines, blog titles, slide titles |
| Sentence case | Hello world | Body copy, emails, UI strings |
| Capitalized Case | Hello World | Every word capitalized (not style-guide title case) |
| camelCase | helloWorld | JavaScript variables, JSON keys |
| PascalCase | HelloWorld | Classes, React components, types |
| snake_case | hello_world | Python, SQL columns, data files |
| kebab-case | hello-world | URL slugs, CSS classes, CLI flags |
| CONSTANT_CASE | HELLO_WORLD | Environment variables, enums |
| dot.case | hello.world | i18n keys, config paths |
Tools in this category
Uppercase Converter
Turn any text into UPPERCASE instantly.
Lowercase Converter
Fix caps-lock mistakes or normalize headings: instant lowercase conversion.
محوّل حالة الجملة
Normalize messy copy: each sentence starts with a capital; the rest goes lowercase.
محوّل title case
Format titles the right way: major words capitalized, minor words handled correctly.
Capitalized Case Converter
Convert any text to Capitalized Case instantly.
Alternating Case Converter
Turn any sentence into alternating uppercase and lowercase letters.
Inverse Case Converter
Invert uppercase and lowercase letters to fix Caps Lock mistakes.
محوّل camelCase
Convert text to camelCase for JavaScript variables, API fields, and code examples.
PascalCase Converter
Convert text to PascalCase for React components, classes, TypeScript types, and code identifiers.
snake_case Converter
Convert text to snake_case for Python variables, database columns, filenames, and config keys.
kebab-case Converter
Convert text to kebab-case for URL slugs, CSS classes, package names, and CLI flags.
CONSTANT_CASE Converter
Convert text to CONSTANT_CASE for environment variables, enum values, feature flags, and shared constants.
dot.case Converter
Convert text to dot.case for translation keys, config paths, analytics events, and namespaced labels.
Frequently asked questions
Which case style should I use for blog titles?
Many publishers use title case for post titles and sentence case for subheadings. Check your house style—or try both with the title case and sentence case converters.
Does Case Modify upload the text I paste?
Standard case converters run in this browser after the page loads. You do not need an account to convert a draft.
Can I convert variable names for code?
Yes. Use the camelCase, PascalCase, snake_case, or kebab-case converters for identifiers. Proofread brand names and acronyms after converting.