Text Case Converter

Select target case to which conver text
A rich description helps us better recommend related products and services
A rich description helps us better recommend related products and services

About Case Converter

Case Converter - Also known as text converter, is an online tool to convert text into different types of letter casing such as lower case, upper case, or sentence case to improve your work productivity. When we type on the mobile or on the computer system, not all humans can multitask and split focus between typing and remembering when to presskey›Caps Lockon, or when to change to capitalized letters. So to make things simpler, you have this free case converter or text converter tool, where you can just type and not care about the upper case or lower case, because you know you can format your text whenever you want in a simple button click or press.

How to Use Case Convert Tool

Just type or copy and paste your text into the text area above and and pick the desired transformation. Direct copy and save/download your converted text to a file.

Uppercase Button

This particular option will let you convert all input characters to capital letter, as displayed in the text button. For example, if the input text is “My text”, it will convert to “MY TEXT”.

Lowercase Button

This button will transform all input characters to lowercase letters, as shown in the text button. For example, if the input text is “HOW ARE YOU”, it will convert to “how are you”.

Camel Case Button

This button will remove all the space and will capitalize on the beginning letter of the word, apart from the first letter of the sentence. As it will be a small letter.

For example, if the input text is “How are you” it will change into “howAreYou”

Kebab Case (Dash Case) Button

This button will transform all space with an dash-. For example, if the input text is “Simple text here”, it will convert to “Simple-text-here”

Snake Case Button

This button will update all space with an underscore_. For example, if the input text is “America is a beautiful country,” it will result in “ America_is_a_beautiful_country

Title Case

This button will capitalize on the first letter of every word while in that case prepositions, conjunctions, and articles will be out of context. For example, if the input text is “me and my brother”, it will convert to “Me and My Brother”.

Invert Case

This button will inverse each input character to its different case. For example, if the input text is “My Name is Jason,” it will convert to “mY nAME IS jASON.” As you can see in the example, the letter in the lower case will convert to upper case and vice versa.

Common Case Converter Uses

What is uppercase?

Uppercase is a typeface of capital letters which is opposed to lowercase or small letters abbreviated as UC. Uppercase can be toggled by pressing theshiftkey or activating theCaps Lockkey.

For example, A is the uppercase of a, B is the uppercase of b, C is the uppercase of c, and so on.

Similar to lowercase, the method for converting a string to uppercase is also provided in most programming languages. The following example shows how to convert a string to uppercase in JavaScript using the built-in toUpperCase method.

const str = 'Case Converter';

console.log(str.toUpperCase()); // CASE CONVERTER

What is lowercase?

Lowercase is a typeface of small letters which is opposed to uppercase or capital letters abbreviated as LC. Lowercase is the default letter case used when typing unless theshiftkey is pressed or theCaps Lockkey is on.

For instance, a is the lowercase of A, b is the lowercase of B, c is the lowercase of C, and so on.

In computer programming, there exists the toLowerCase method or something similar for converting a string to lowercase in most programming languages. For example, the code below demonstrates how to convert a string to lowercase in JavaScript.

const str = 'Case Converter';

console.log(str.toLowerCase()); // case converter

What is camel case?

Camel case is a naming convention that the first letter of each word is capitalized except for the first one with no spaces in between. In computer programming, camel case is often used for naming variables and functions.

For instance, Add User becomes addUser, Validate Email becomes validateEmail, and Last Visited becomes lastVisited when converted to camel case.

This is an example of a naming convention that uses camel case to name variables and functions in JavaScript.

function getFullName(firstName, lastName) {
  const fullName = `${firstName} ${lastName}`;

  return fullName;
}

What is kebab case?

Kebab case is a naming convention that all the words are in lowercase and split by a dash-with no spaces in between also known as param case. Kebab case is mostly used for naming URL slugs as it’s easy to read for both humans and bots and good for SEO as well as CSS properties, file names, and more.

For example, Login Button becomes login-button, How to Pet Cats becomes how-to-pet-cats, and To-Do List becomes to-do-list when converted to param case.

The following is the URL of this page that the slug is in param case; i.e. case-converter.

https://www.appdevtools.com/case-converter

What is snake case?

Snake case is a naming convention that all the words are in lowercase and split by an underscore_with no spaces in between. Snake case is often used for naming variables in programming just like camel case depending on the preference.

For instance, Country Name becomes country_name, IP Address becomes ip_address, and Creation Date becomes creation_date when converted to snake case.

The following is an example of naming variables in snake case in JavaScript.

const first_name = 'Case';
const last_name = 'Converter';
const full_name = `${first_name} ${last_name}`;

console.log(full_name); // Case Converter