이 기사에서는 주어진 인덱스에서 유니코드 코드 포인트를 결정하는 방법을 이해할 것입니다. 각 문자는 유니코드 코드 포인트로 표시됩니다. 코드 포인트는 주어진 문자를 고유하게 식별하는 정수 값입니다. 유니코드 문자는 UTF-8 또는 UTF-16과 같은 다른 인코딩을 사용하여 인코딩할 수 있습니다.
아래는 동일한 데모입니다 -
입력이 다음과 같다고 가정 -
Input String: Java Program Index value: 5
원하는 출력은 -
Unicode Point: 80
알고리즘
Step 1 - START Step 2 - Declare a string value namely input_string and two integer values namely index and result Step 3 - Define the values. Step 4 - Use the function codePointAt() to fetch the code point value. Store the value as result. Step 5 - Display the result Step 6 - Stop
예시 1
여기에서 모든 작업을 'main' 기능 아래에 묶습니다.
import java.io.*; public class UniCode { public static void main(String[] args){ System.out.println("Required packages have been imported"); String input_string = "Java Program"; System.out.println("\nThe string is defined as: " +input_string); int result = input_string.codePointAt(5); System.out.println("The unicode point at index 5 is : " + result); } }
출력
Required packages have been imported The string is defined as: Java Program The unicode point at index 5 is : 80
예시 2
여기에서 객체 지향 프로그래밍을 나타내는 함수로 작업을 캡슐화합니다.
import java.io.*; public class UniCode { static void unicode_value(String input_string, int index){ int result = input_string.codePointAt(index); System.out.println("The unicode point at index " +index +"is : " + result); } public static void main(String[] args) { System.out.println("Required packages have been imported"); String input_string = "Java Program"; System.out.println("\nThe string is defined as: " +input_string); int index = 5; unicode_value(input_string, index); } }
출력
Required packages have been imported The string is defined as: Java Program The unicode point at index 5 is : 80