io.github.bhowell2.apilib.checks.utils.CodePointUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-lib Show documentation
Show all versions of api-lib Show documentation
API verification library.
The newest version!
package io.github.bhowell2.apilib.checks.utils;
/**
* @author Blake Howell
*/
public class CodePointUtils {
public static String codePointToString(int codePoint) {
return String.valueOf(Character.toChars(codePoint));
}
}