Wednesday, April 2, 2025
Google search engine
HomeData Modelling & AIHow to Convert Char to String in Java?

How to Convert Char to String in Java?

In this article, we will learn how to Convert Char to String in Java. If we have a char value like ‘G’ and we want to convert it into an equivalent String like “G” then we can do this by using any of the following four listed methods in Java

Example of Conversion of Char to String Java

Input  : 'G'
Output : "G"

Methods to Convert Char to String

There are various methods by which we can convert the required character to string with the usage of wrapper classes and methods provided in Java classes.

  1. Using concatenation of strings
  2. Using toString() method of Character class
  3. Using Character Wrapper class
  4. Using valueOf() method of the String class

Let us discuss these methods in detail below as follows with clean Java programs as follows:

1. Using Concatenation of Strings for Char to String Conversion

We can convert a char to a string object in Java by concatenating the given character with an empty String.

Below is the implementation of the above method:

Java




// Java Program to Convert Char to String
// Using Concatenation in Strings
  
// Importing the required packages
import java.io.*;
import java.util.*;
  
// Main class
class GFG {
  
    // Main driver method
    public static void main(String[] args)
    {
  
        // Declaring a char variable
        char c = 'G';
  
        // Concatenating the char variable
        // with an empty string
        String s = "" + c;
  
        // Print and display the above string
        System.out.println(
            "Char to String using Concatenation :"
            + " " + s);
    }
}


Output

Char to String using Concatenation : G

2. Using the toString() method of the Character class 

We can convert a char to a string object in Java by using the  Character.toString() method.

Below is the implementation of the above method:

Java




// Java Program to Convert Char to String
// Using toString() method of Character class
  
// Importing the required packages
import java.io.*;
import java.util.*;
  
// Main class
class GFG {
    // Main driver method
    public static void main(String[] args)
    {
        // Declaring a char variable
        char c = 'G';
  
        // Converting the char to String using toString
        // method of Character class and storing it in a
        // string
        String s = Character.toString(c);
  
        // Print and display the above string
        System.out.println(
            "Char to String using Character.toString method :"
            + " " + s);
    }
}


Output

Char to String using Character.toString method : G

3. Using Character Wrapper Class for Char to String Conversion

We can convert a char to a string object in Java by using java.lang.Character class, which is a wrapper for the char primitive type.

Note: This method may arise a warning due to the new keyword as Character(char) in Character has been deprecated and marked for removal.

Below is the implementation of the above method: 

Java




// Java Program to Convert Char to String
// Using toString() method of Character class
  
// Importing the required packages
import java.io.*;
import java.util.*;
  
// Main class
class GFG {
  
    // Main driver method
    public static void main(String[] args)
    {
  
        // Declaring a char variable
        char c = 'G';
  
        // Converting the char to String using toString
        // method of Character class and storing it in a
        // string
        String s = Character.toString(c);
  
        // Print and display the above string
        System.out.println(
            "Char to String using Character.toString method :"
            + " " + s);
    }
}


Output

Char to String using Character.toString method : G

Output:

Output for Program to Convert Char to String Java

3-A. Using @deprecated annotation with Character.toString().

This will help you to avoid warnings and let you use deprecated methods. This will help you remove the warnings as mentioned in Method 3

Below is the implementation of the above method:

Java




// Importing the required packages
import java.io.*;
import java.util.*;
  
// Main class
class GFG {
  
    @Deprecated
    // Main driver method
    public static void main(String[] args)
    {
  
        Character ch = new Character('G');
  
        // Print and display the above string
        System.out.println(
            "Char to String using @Deprecated Annotation and toString method :"
            + " " + ch.toString());
  
        /*  This method will arise a warning since the new
           keyword in Character(char) in Character has been
           deprecated and marked for removal. That is why we
            have used @Deprecated annotation
          */
    }
}


Output

Char to String using @Deprecated Annotation and toString method : G

4-A. Using the String.valueOf() method of the String class

We can convert a char to a string object in Java by using String.valueOf(char[]) method.

Below is the implementation of the above method:

Java




// Java Program to Convert Char to String
// Using String.valueOf() method of String class
  
// Importing the required packages
import java.io.*;
import java.util.*;
  
// Main class
class GFG {
  
    // Main driver method
    public static void main(String[] args)
    {
  
        // Declaring a char variable
        char c = 'G';
  
        // Converting char to String by
        // using String.valueOf() method
        String s = String.valueOf(new char[] { c });
  
        // Print and display the above-stored string
        System.out.println(
            "Char to String using String.valueOf(new char[]) method :"
            + " " + s);
    }
}


Output

Char to String using String.valueOf(new char[]) method : G

4-B. Using valueOf() method of String class 

We can convert a char to a string object in Java by using String.valueOf() method.

Below is the implementation of the above method:

Java




// Java Program to Convert Char to String
// Using valueOf() method of String class
  
// Importing the required packages
import java.io.*;
import java.util.*;
  
// Main class
class GFG {
  
    // Main driver method
    public static void main(String[] args)
    {
        // Declaring a char variable
        char c = 'G';
  
        // Converting char to String
        // using String.valueOf() method
        String s = String.valueOf(c);
  
        // Print and display the String s
        System.out.println(
            "Char to String using String.valueOf() method :"
            + " " + s);
    }
}


Output

Char to String using String.valueOf() method : G

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments