Java Program for ASCII Code | Study Table

import java.util.Scanner;
class ASCII
{
    public static void main(String args[])
    {
        Scanner scanner = new Scanner(System.in);
        System.out.print("Enter a String or Character: ");
        String str = scanner.next();
        System.out.println("The UNICODE value of "+str+" is ");
        ASCII.code(str); scanner.close();
    }

    public static int code(char ch)
    {
        return (int)(ch);
    }

    public static void code(String str)
    {
        for(int i=0; i<str.length(); i++)
        {
            char ch = str.charAt(i);
            System.out.println(ch+":"+ASCII.code(ch));
        }
    }

} 

Comments

Popular posts from this blog

You have accidentally left your suitcase behind when you got off the train. You only realized it after the train left the platform. Write a letter to the station master reporting your loss and request that the suitcase is located and kept till you claim it.

Java Program for Binary to Decimal Conversion | Study Table