Java Char Code Get codePointAt(char[] s, int i)

Here you can find the source of codePointAt(char[] s, int i)

Description

code Point At

License

Apache License

Declaration

static int codePointAt(char[] s, int i) 

Method Source Code

//package com.java2s;
// Licensed under the Apache License, Version 2.0 (the "License");

public class Main {
    static int codePointAt(char[] s, int i) {
        return Character.codePointAt(s, i);
    }/*from  w w w . jav a2 s . c o  m*/
}

Related

  1. codePointAt(final char c1, final char c2)
  2. codePointAt(String _this, int index)
  3. CodePointAt(String str, int index)
  4. CodePointAt(String str, int index, int endIndex)