All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.bhowell2.apilib.checks.utils.CodePointUtils Maven / Gradle / Ivy

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));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy