answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What code represents a digit or letter or special character in computers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What character represents witchcraft in The Scarlet Letter?

The Black Man that hangs out in the forest


What does non numeric mean?

Not a letter or number .It is Special Character


What is the letter which represents the ratio of the circumfernce to the diameter of a circle?

The letter or character used to represent the ratio of the circumference to the diameter of a circle is the Greek lower case letter π, called "pi."


What letter represents 100?

The letter C represents 100


WAP to initialize a character and print whether it is upper caselower case or special character without using logical operators?

The general solution to this problem is very simple to lay out, but part of it relies on what a "special character" is. The part of code which handles this will be highlighted for the reader to implement as he/she will. void displayType(char c) { if(Character.isUpperCase(c)) { // upper case System.out.println("Upper case"); }else if(Character.isLowerCase(c)) { // lower case System.out.println("Lower case"); } else { // special case // This is where the "special character" part comes in. // You may be defining a "special character" as any non-letter character, // in which case you can simple put the line to print it out in this else // block. A "special character" may also be any non-letter, non-digit // character, and so we would need to check for Character.isDigit at // this point. } }


What is a letter that represents a number?

A letter that represents a number is called a variable.


What is the missing letter in thirukkural in tamil?

The missing letter is "ள" in the word "திருக்குறள்" (Thirukkural). It is a special character in the Tamil language and is pronounced as "la."


1000 in Roman numbers?

The letter "M" represents 1000 in Roman numerals.The letter "M" represents 1000 in Roman numerals.The letter "M" represents 1000 in Roman numerals.The letter "M" represents 1000 in Roman numerals.The letter "M" represents 1000 in Roman numerals.The letter "M" represents 1000 in Roman numerals.The letter "M" represents 1000 in Roman numerals.The letter "M" represents 1000 in Roman numerals.The letter "M" represents 1000 in Roman numerals.


Which passwords parameter is correct?

Passwords can be letters and /or numbers


Which letter represents the Rhine river?

c


What letter represents 100 and 1000?

The letter 'C' represents 100 in Roman numerals, and the letter 'M' represents 1000.


Why null is used as capital letter in c language?

Null is not a capital letter. It is not any letter. It is a null, '\0', (most often 0x00) and that is a special character, usually indicating the end of a string.