Languages
[Edit]
EN

Java - convert char to string

0 points
Created by:
Emelia
517

In this article, we would like to show you how to convert char to string in Java.

Quick solution:

char character = 'x';
String result = String.valueOf(character);

 

Using Character toString() method

In this example, we present the second solution of how to convert char to String - using Character toString() method.

public class Example {

    public static void main(String[] args) {
        char character = 'x';
        String result = Character.toString(character);
    }
}
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join