• Get unicode value of character in java
    07 February

    Get Unicode Value of Character in Java

    In this post, we will see how to get unicode value of character in java. Get Unicode Value of Character in Java You can simply use below code to get unicode value of character in java. [crayon-66227b0e52d3d443538699/] Here is complete example to print unicode value of character in java: [crayon-66227b0e52d44713328746/] Output Unicode value of character […]

  • Convert chartacter to ascii in java
    04 May

    Convert Character to ASCII Numeric Value in Java

    Learn about how to convert Character to ASCII Numeric Value in Java.

  • 30 September

    How to compare characters in Java

    Learn about how to compare characters in java using different methods.

  • 17 March

    New line character in java

    In this post, we will see about new line character in java and how to add new line character to a String in different operating systems. Operating systems have different characters to denote the end of the line. Linux and new mac: In Linux, the end line is denoted by \n, also known as line […]

  • 09 October

    Find Vowels in a String

    In this post, we will see how to find and count vowels in a string. Find Vowels in a String If any character in String satisfy below condition then it is vowel and we will add it to Hashset. character==’a’ || character==’A’ || character==’e’ || character==’E’ || character==’i’ || character==’I’ || character==’o’ || character==’O’ || […]

  • 06 October

    Java remove last character from string

    Learn about how to remove last character from String in java using different ways.

  • 06 October

    Convert char to lowercase java

    You can use Character class’s toLowerCase method to convert char to lowercase in java. Method signature [crayon-66227b0e56f45887723431/] Parameters ch is primitive character type. Return type return type is char. If char is already lowercase then it will return same. [crayon-66227b0e56f4c260676935/] When you run above program, you will get below output: a y b z That’s […]

  • 06 October

    Convert char to uppercase java

    You can use Charater class’s touppercase method to convert char to uppercase in java. Method signature [crayon-66227b0e57551823057411/] Parameters ch is primitive character type. Return type return type is char. If char is already uppercase then it will return same. [crayon-66227b0e57557836971655/] When you run above program, you will get below output: A Y F U That’s […]

  • 06 October

    Java isLetter method

    Character class’s isletter method can be used to check if character is letter or not. Method signature [crayon-66227b0e58172220141556/] Parameters ch is primitive character type. Return type boolean is primitive character type. [crayon-66227b0e58179447790636/] When you run above program, you will get below output: true true false false That’s all about java Character’s isletter method.