The Text Case Converter is Simplest and easiest way to convert blocks of text into your desirable case. After completion you can can copy – paste to your own document.




ASCII Table

It will just take seconds to convert your text into case you want it. Simply move in the text in the provided space above, then at the bottom you will see 5 options;


  • UPPER CASE: THIS WILL CONVERT ALL THE TEXT IN CAPTIAL LETTERS.
  • lower case: this will convert all your text in small letters.
  • Capitalized Case: This Will Convert Your Text’s Every Word’s First Letter In Capital Letters.
  • Sentence Case: This will convert only the first word first letter in capital letters and rest of the sentence will be like normal text in small letters.
  • aLtErNaTiNg cAsE: tHiS WiLl cOnVeRt aLl tHe tExT In aLtErNaTiNg uPpEr cAsE AnD LoWeR CaSe lEtTeRs.

Once you have finished your text into your desired case now you have the option to directly select the result and copy paste it to your desired desktop document. No more messing up your hard-work just for the sake of writing. You can still do it with this trick !!!


/*
 * A C++ version to change the case of a letter
 */
#include <cctype> 
#include <iostream> 
int main(void)
{
                                        char letter = 'b';
   std::cout << "Before toupper: " << letter << std::endl;
   letter = std::toupper(letter);
   std::cout << "After toupper: " << letter << std::endl;
   letter = std::tolower(letter);
   std::cout << "After tolower: " << letter << std::endl;
                                        return 0;   
}
/*
  Output:
  Before toupper: b
  After toupper: B
  After tolower: b
*/
// Demonstrate toUpperCase() and toLowerCase(). 
class ChangeCase { 
public static void main(String args[]) 
{ 
String s = "This is a test."; 
System.out.println("Original: " + s); 
String upper = s.toUpperCase(); 
String lower = s.toLowerCase(); 
System.out.println("Uppercase: " + upper); 
System.out.println("Lowercase: " + lower); 
} 
}
/*
  Output:
Original: This is a test.
Uppercase: THIS IS A TEST.
Lowercase: this is a test.
*/
/*
 * A C version to change the case of a letter
 */
#include <stdio.h> 
#include <ctype.h> 
int main(void)
{
                                        char letter = 'a';
   
   printf ("Before toupper: %c\n", letter);
   letter = toupper(letter);
   printf ("Before toupper: %c\n", letter);
   letter = tolower(letter);
   printf ("Before toupper: %c\n", letter);
                                        return 0;   
}
/*
  Output:
  Before toupper: b
  After toupper: B
  After tolower: b
*/