answersLogoWhite

0

ASCII (American Standard Code for Information Interchange) is a character encoding standard that represents text in computers and other devices. However, ASCII primarily supports the English alphabet and does not include characters specific to the Kannada language. For Kannada, other encoding systems like UTF-8 or ISCII are used, which can represent a wider range of characters, including those used in Kannada script. These encodings enable proper display and manipulation of Kannada text in digital formats.

User Avatar

AnswerBot

2mo ago

What else can I help you with?

Related Questions

Is ASCII is a language used by the computer?

ASCII is American Standard Code for Information Interchange, it's not a language, it's a code.


American standard for information interchange ASCII?

ASCII is code in which computer programs are written . it is the computer machine language.if write a program in any computer language thaen it will be converted in this code.


What is the code of the space in the ASCII code?

32 is the ASCII Code for a space.


How do you get the ASCII code of Key pressed?

To get the ASCII code of a key pressed in programming, you typically use event handling in a specific language. For example, in JavaScript, you can listen for a keydown event and access the event.keyCode or event.which properties to get the ASCII code. In Python, you can use libraries like tkinter to bind a key event and retrieve the key's ASCII value using the ord() function. The exact method can vary based on the programming environment and language used.


What is the ASCII code of 'd'?

ASCII refers to the characterset. So the ASCII code of 'd' is 'd' If you meant binary code it is: 01100100


What is the ASCII code for e?

The ASCII code for capital E is 069 and the ASCII code for regular e is 101.hope this help.


What is the code of the letter B in the ASCII code?

The ASCII code of letter B is 66


How many ascii code are there?

128 ascii codes.


How does the ASCII code works?

ASCII is an abbreviation for American Standard Code for Information Interchange. The ASCII code, which is used worldwide, is used to create computer coding languages so computers can interact with people.


What is the Hexadecimal equivalent of dot?

If you are referring to the ASCII code: The ASCII Code for a dot (.) is 46. The hexadecimal equivalent of this is 2E. You can find this, and all ASCII characters here: http://www.asciitable.com/.


What is character code used by most personal computers?

ASCII (American Standard Code for Information Interchange)


What does Java use instead of ASCII?

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.