About 1,100 results
Open links in new tab
  1. Character (Java Platform SE 8 ) - Oracle

    An object of class Character contains a single field whose type is char. In addition, this class provides a large number of static methods for determining a character's category (lowercase letter, digit, etc.) …

  2. Character Class in Java - GeeksforGeeks

    Jan 23, 2026 · The Character class in Java, available in the java.lang package is a wrapper class used to represent a single char value as an object. It provides several useful static methods for character …

  3. Java - Character Class - Online Tutorials Library

    Java Character Class The Character class offers a number of useful class (i.e., static) methods for manipulating characters. You can create a Character object with the Character constructor − …

  4. Java Character Class - Complete Tutorial with Examples - ZetCode

    Apr 13, 2025 · Complete Java Character class tutorial covering all methods with examples. Learn about character classification, conversion and other Character class methods.

  5. Java Characters - W3Schools

    This class provides a wide variety of functional class and methods that come in handy for dealing with characters in complex programs, making the manipulation of characters easier for programmers.

  6. A Deep Dive into the Character Class in Java - javaspring.net

    Nov 12, 2025 · In Java, the Character class is a fundamental part of the Java Standard Library that provides a convenient way to work with individual characters. It is a wrapper class for the primitive …

  7. The Character Class in Java - blog.rheinwerk-computing.com

    Discover the power of the character class in Java and its useful methods for dealing with single characters.

  8. Java Character Class Methods

    The table below contains various methods of the Java Character class, each with a link to a detailed explanation, examples, and real-world uses. Click on the method names to learn more about how to …

  9. Character Class in Java - Methods | Set 2 - GeeksforGeeks

    Jul 23, 2025 · In Java, the Character Class wraps the value of a primitive data type char into an object of datatype Character. This object contains a single field having the data type char. This class provides …

  10. Java Character Class – 8 Astonishing Methods with Syntax & Examples

    Java character class wraps a value of the primitive type char in an object. Learn 8 types of Character class methods in Java to identify a type of character, whitespace, uppercase to lowercase.