Frequently Asked Questions
What is Title Case?
Title Case capitalizes the first letter of each word. For example, "the quick brown fox" becomes "The Quick Brown Fox." It's commonly used for headlines, book titles, and article headings.
What is camelCase?
camelCase removes spaces and capitalizes the first letter of each word except the first. For example, "hello world" becomes helloWorld. It's widely used in JavaScript, Java, and many other programming languages.
What is snake_case?
snake_case replaces spaces with underscores and lowercases everything. For example, "Hello World" becomes hello_world. It's common in Python, Ruby, and database column names.
What is kebab-case?
kebab-case replaces spaces with hyphens and lowercases everything. For example, "Hello World" becomes hello-world. It's used in URLs, CSS class names, and HTML attributes.
What is the difference between Sentence case and Title Case?
Sentence case only capitalizes the first letter of the first word (like a normal sentence). Title Case capitalizes the first letter of every word. Sentence case: "The quick brown fox." Title Case: "The Quick Brown Fox."