इस लेख में, हम समझेंगे कि किसी दिए गए इंडेक्स पर यूनिकोड कोड बिंदु कैसे निर्धारित किया जाए। प्रत्येक वर्ण को एक यूनिकोड कोड बिंदु द्वारा दर्शाया जाता है। एक कोड बिंदु एक पूर्णांक मान है जो विशिष्ट रूप से दिए गए वर्ण की पहचान करता है। यूटीएफ -8 या यूटीएफ -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
यहां, हम 'मेन' फंक्शन के तहत सभी ऑपरेशंस को एक साथ बांधते हैं।
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 5is : 80