answersLogoWhite

0

ASCII and Java are 2 totally different things. ASCII is a naming convention where a certain letter, number, or punctuation mark is a specific keyboard code (Carriage Return, CR, is code 31, Line Feed 14, Capital A 96). Java is a programming language that handles text in multiple formats as needed, Unicode, EBDIC, ASCII. The two are not intertwined.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Why char consumes 2 bytes in java and int consumes 4 bytes in java?

in java, char consumes two bytes because it uses unicode instead of ascii. and int takes 4 bytes because 32-bit no will be taken


How do you calculate ascii value in java?

char a = 'A'; System.out.println((int)a);


Why would you use ASCII instead of Binary?

ASCII = American Standard Code for Information InterchangeThat means that ASCII is a type of character encoding...Unless you want to write in 1's and 0's, then you must use ASCII. If you type a single character, it's most likely ASCII. To show you how ridiculous typing in binary is:011101110110100101101011011010010010000001100001011011100111001101110111011001010111001001110011 = wiki answers (lowercase)


What is the best platform for the java source code for learning?

Takeoff Projects will be able to offer you an inventory of the simplest Java projects with ASCII text files for beginners which will surely improve your skills both in desktop and web development using our Java projects with ASCII text files.


What do you use instead of a destructor in java?

Hi, This is suneetha. We use Finalize() method in java instead of destructors. Finalize() is used to release the memory before the garabage collection takes place.


Where do you find an ASCII table?

Websites such as asciitable.com and ascii-code.com provide ascii tables on their websites, along with toher information about ascii codes, their uses, and how to use them.


Write a Java program to get the ASCII value of the given number?

If you look up the ASCII values for digits, you'll see that 0 = 48, 1 = 49... 9 = 57. So it's a simple matter of adding 48 to your digit to find out the ASCII value for it.


What does the acronym JAVE stand for?

The acronym JavE stands for Java ASCII Versatile Editor. JavE is a useful tool for converting images and video clips into ascii art. The service is free but they do accept donations through paypal.


What is the use of java language for a computer science engineer?

Java is a programming language. The computer science engineer may decide to use the Java language to do his programming - or somebody else may have done the decision for him, in a company at which he works. Or they might decide to use some other language instead.


How can you type different brackets?

If you can't find them on your keyboard, use charmap.exe () ASCII 28H and 29H [] ASCII 5BH and 5DH {} ASCII 7BH and 7DH


Can you use pointers in java?

Java does not support Pointers and hence you cannot use it in Java.


WAP in java to take alphabet and print ascii value for it?

Remember that chars in Java are just a special version of ints. Cast the char as an int and you get the Unicode value for it. Fortunately, the group of characters including letters and numbers have the same value in both encoding systems. for (char letter = 'a'; letter <= 'z'; ++letter) { System.out.println("ASCII of " + letter + " = " + (int) letter); }