Text Case Converter
Easily convert your text between uppercase, lowercase, title case, snake_case, kebab-case, camelCase, and PascalCase.
About Text Case Conversion
Text case conversion involves changing the capitalization of text. Each case has specific applications in writing, programming, and design. Explore the common cases below:
UPPERCASE
In uppercase, all letters are capitalized. Uppercase is often used for emphasis, acronyms, or in design for headings.
Example: "HELLO WORLD"
lowercase
In lowercase, all letters are in small case. Lowercase is the standard form for most text.
Example: "hello world"
Title Case
In title case, the first letter of each word is capitalized. Title case is commonly used for titles of books, articles, and headings.
Example: "Hello World"
snake_case
In snake case, all letters are lowercase and spaces are replaced with underscores. Snake case is commonly used in programming for variable and function names, especially in languages like Python.
Example: "hello_world"
kebab-case
In kebab case, all letters are lowercase and spaces are replaced with hyphens. Kebab case is commonly used in URLs and CSS class names.
Example: "hello-world"
camelCase
In camel case, there are no spaces and the first letter of each word except the first is capitalized. Camel case is commonly used in programming for variable and function names, especially in languages like JavaScript and Java.
Example: "helloWorld"
PascalCase
In PascalCase (or UpperCamelCase), similar to camelCase, but the first letter of every word is capitalized. It's often used for class names in programming.
Example: "HelloWorld"
Common Uses:
- Formatting text for different contexts (e.g., titles, headings, code)
- Ensuring consistent capitalization in documents
- Converting between different naming conventions in programming
- Making text more readable or emphasizing certain parts