Languages
[Edit]
EN

Java - convert character to ASCII code

0 points
Created by:
ParaEagle
724

In this article, we would like to show you how to convert a character to ASCII code in Java.

Quick solution:

char character = 'A';
int asciiCode = (int) character;

System.out.println(asciiCode);  // 65

 

Practical example

In this example, we cast a character to the int to convert it to the ASCII code.

public class Example {

    public static void main(String[] args) {
        char character = 'A';
        int asciiCode = (int) character;

        System.out.println(asciiCode);  // 65
    }
}

The cast is not required explicitly but improves readability.

This solution will also work:

public class Example {

    public static void main(String[] args) {
        char character = 'A';
        int asciiCode = character;

        System.out.println(asciiCode);  // 65
    }
}

Output:

65
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.

Java - String conversion

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