Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Char and ASCII Table | Basic Types, Operations
Java Basics
course content

Course Content

Java Basics

Java Basics

1. Getting Started
2. Basic Types, Operations
3. Loops
4. Arrays
5. String

bookChar and ASCII Table

Why Can We Perform Mathematical Operations on the char Data Type?

The char data type is quite interesting. It stores characters, but you can also perform operations on this data type.

What will be the result of executing this code?

java

Main

copy
1234567891011
package com.example; public class Main { public static void main(String[] args) { char firstLetter = 'A'; char secondLetter = '('; char result = (char) (firstLetter + secondLetter); //we use type casting here to convert value from int to char System.out.println(result); } }

Note

Here, we use the "+" sign to concatenate two different variables. We will cover basic operations in the next chapter, but for now, you should know that "+" combines the values of two variables.

One might have thought that the result would be "A(", but as we can see, the result is "i". Why is that? char is not purely a character data type; it takes characters from the ASCII table. The character "A" corresponds to the number 65 in the table, while the character "(" corresponds to the number 40. As you may have guessed, the character "i" corresponds to 105, as 65 + 40 = 105. It's important to know this because it allows us to operate on the char data type excellently and flexibly.

Here is a link to the ASCII table.

Note:

Type casting in Java refers to the process of converting one data type to another. It allows us to treat a variable of one type as if it were another. When casting an int to a char, we can use the (char) syntax. This conversion is known as a narrowing primitive conversion because we convert from a larger range (32-bit integer) to a smaller range (16-bit Unicode character).

Why can we perform mathematical operations on char?

Why can we perform mathematical operations on char?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 2. Chapter 3
some-alt