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.

You went to an ATM to withdraw some money but the machine did not dispense cash. However, the amount got debited from your account. Write a letter to the manager of a bank, complaining about the deduction of money from your Savings Bank Account, while you did not receive the cash from the ATM, which you used to withdraw the money | Study Table

Shorthand Assignments Program for Java