class Test {
	public static void main(String[] args) {
		String str = "𠍱𠌫𠎁";
		System.out.println(str.codePointCount(0, str.length()));
	}
}
