We can convert char to ASCII in Java by saving the char value as an int.
package org.code2care.examples;
public class CharToAsciiExample {
public static void main(String[] args) {
char c = 'z';
int charToAscii = c;
System.out.println(charToAscii);
}
}
Output: 122

From Java 8 or above we can make use of the getNumericValue(char) static method to get the numeric value associated with the given character according to Unicode specifications.
Example:public class CharToUnicodeValueExample {
public static void main(String[] args) {
char c = 'A';
int charToAscii = Character.getNumericValue(c);
System.out.println(charToAscii);
}
}
Output: 10
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- Linux: Create a New User and Password and Login Example - Linux
- IntelliJ Keyboard Shortcut to remove unused imports [Java] - Java
- How to Clear StringJoiner in Java 8 - Java
- Python: How to Return a dictionary keys as a list - Python
- How to rename package name in Android Studio - Android-Studio
- Is Stream within a Stream Possible in Java? - Java
- Java JDBC Example with Oracle Database Driver Connection - Java
- Guide: Install Vim on Mac - vi