AppsUtilities

Case Converter

Transform your text into any case format instantly. Perfect for coding, writing, and social media formatting.

Actions

Your Text

0 characters | 0 words

Text Case Guide

Understanding when to use different text formats

Sentence Case

Capitalizes the first letter of the first word. Ideal for standard writing, emails, and blog posts.

This is an example.

Title Case

Capitalizes the first letter of every major word. Used for headlines, book titles, and names.

This Is An Example

UPPERCASE

Converts all letters to capital. Often used for acronyms or emphasis.

EXAMPLE TEXT

camelCase

No spaces, first word lowercase, subsequent words capitalized. Standard for variables in JavaScript, Java, and Swift.

thisIsAnExample

snake_case

Words separated by underscores. Standard for Python variables and database field names.

this_is_an_example

kebab-case

Words separated by hyphens. Standard for URLs and CSS class names.

this-is-an-example