answersLogoWhite

0

ASCII character set

Updated: 12/8/2022
User Avatar

Wiki User

14y ago

Best Answer

ASCII characters do represent a numerical codes of letters and other alphabetical signs.

Computers do not understand only numbers so they use this numerical codes to interpret letters into their own "language".

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: ASCII character set
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is ESC an ASCII character set?

No; ASCII itself is the character set in this case.


Why is Asian in squares on computer?

Because certain standards such as ASCII have different values than an Asian character set. for example, if the letter (Asian letter here) is represented by 129h in an Asian character set, then when 129h is tried to be put into ASCII, it fails, because 129h is not a valid character in ASCII, and is then shown as a box.


How many characters are in the original 7-bit ascii character set?

128


What is the character set in c programs?

Ascii, Ebcdic, etc: platform-dependent


What controls the keyboard and monitor and color on the monitor and an additional set of characters to the ASCII character set?

Ansi.sys


ASCII protocol same of Modbus protocol?

Ascii is not a protocol - it describes a computer system's character set. Communication with a Modbus PLC requires an understanding of how to communicate and the protocol (set of rules) does describe this. Ascii is a set of values describing the Latin codepage set that can represent certain characters in data. There are no communications "rules" with Ascii, just a data representation.


How many characters can be held in a computer with 5 GB of RAM?

If you are storing ASCII character set, 5 x 1024 x 1024 x 1024 characters can be held. If you are storing UTF-8 character set(s), 5 x 1024 x 1024 x 1024 / 8 characters can be held. English is a ASCII character set. Japanese and Nepalese can be UTF-8 character set(s).


IT What is a simple character set that can represent 128 different characters?

The ASCII character set is a simple character set that can represent 128 different characters, including letters, numbers, punctuation marks, and control characters. Each character is represented by a 7-bit code, allowing for 128 unique combinations.


How much memory does it take to store the letter A?

You can store any of the 127 characters in the ASCII table using just 7 bits. The letter A has character code 65 (0x41) in all ASCII code pages. The code simply maps to the character's glyph in the current code page so you're not actually storing the letter, you are only storing its code. On most systems, the smallest unit of storage is a byte which is typically 8 bits long. The 8th bit is used to determine whether the character is in the standard ASCII character set (0 to 127) or the extended ASCII character set (128 to 255). Only the standard character set is guaranteed to be the same on all systems (the glyphs may vary in style but always represent the same character). The extended character set varies depending on which code page is current. If using UNICODE wide-characters, the character code will consume 2 or 4 bytes. On Windows, it is always 2 bytes. But if using multi-byte character encoding or standard ASCII, it is always 1 byte,


Why does ASCII use 8-bit to represent an English character?

Because that is the definition ASCII represents Latin characters of the English alphabet (there are no English characters) the character set is called "Latin" The 95 ASCII graphic characters are numbered from 0x20 to 0x7E (32 to 126 decimal). The space character is considered a non-printing graphic Visit the link below for some in depth information.


What is the difference between null pointer ASCII null character and null string?

A null pointer is a pointer which does not point to any valid memory location, and usually contains the binary value "0" to represent this (this is language dependent). The ASCII null character is a character-sized zero value (in ASCII, it is an unsigned byte with a value of 0), and typically represents the end of a string (esp. as in C and C++). A null string is one that is zero characters of usable string data; in a length-based string, this means the length parameter is set to 0, and in an ASCII null-terminated string, means the first character is set to 0.


What is the ASCII value of the Chevron character?

There is no ASCII character that represents a chevron. However, there are several characters in the Unicode character set that have chevrons: * 0xAB and 0xBB are right and left double chevrons (these are in Latin-1). * U+27E8, U+27E9, U+27EA, U+27EB are various single and double chevrons.