About 314,000 results
Open links in new tab
  1. Java String codePoint() Method with Examples - GeeksforGeeks

    Feb 1, 2022 · This method accepts an integer that specifies an index value in a string and returns an integer representing the Unicode point value for the character at the specified index in a …

  2. java - How do I convert unicode codepoints to their character ...

    This method transforms a set of code points in Unicode format to a readable String in a single statement: void processUnicode() { // Create a test string containing "Hello World 😁" with code …

  3. Java String codePointAt() Method - W3Schools

    Return the Unicode of the first character in a string (the Unicode value of "H" is 72): Try it Yourself » The codePointAt() method returns the Unicode value of the character at the specified index …

  4. Java String codePointAt() Method - Java Guides

    The String.codePointAt() method in Java is used to return the Unicode code point value of the character at the specified index. This method is particularly useful when working with …

    Missing:

    • Alphabets

    Must include:

  5. Java String.codePointAt() - Baeldung

    Apr 11, 2025 · int a = "abcd".codePointAt(4); A quick example and explanation of the codePointAt API of the standard String class in Java.

  6. Java string codePointAt() Method | CodeToFun

    Nov 20, 2024 · In Java programming, working with strings is a fundamental task, and Java provides various methods to manipulate and analyze strings. The codePointAt() method is one …

  7. Java - String codePointAt() Method - Online Tutorials Library

    Java String CodepointAt Method - Learn how to use the CodepointAt method in Java Strings to retrieve the Unicode code point at a specified index.

    Missing:

    • Alphabets

    Must include:

  8. Java Program to Determine the Unicode Code Point at Given …

    Apr 21, 2022 · Definition: This is an inbuilt function that Returns the character(Unicode point) at the specific index. The index refers to character values (Unicode units) and ranges from 0 to …

  9. Understanding String and Code Point At in Java: A …

    Java provides robust functionalities for handling strings, including the ability to retrieve character information with the `codePointAt` method. This method is particularly useful in dealing with …

  10. java - What exactly does String.codePointAt do? - Stack Overflow

    Sep 5, 2012 · Short answer: it gives you the Unicode codepoint that starts at the specified index in String. i.e. the "unicode number" of the character at that position. Longer answer: Java was …

Refresh