answersLogoWhite

0

What else can I help you with?

Related Questions

How to find the ascii value of a letter?

To find the ASCII value of a letter in most programming languages, you can use a built-in function. For instance, in Python, you can use the ord() function, where ord('A') will return 65. Similarly, in JavaScript, you can use the charCodeAt() method on a string, like 'A'.charCodeAt(0), which will also give you 65. You can also look up ASCII values in a standard ASCII table.


Does windows base on ASCII or UNI?

ASCII because the other one like eating your system up


How many bits are in extended ASCII byte?

An extended ASCII byte (like all bytes) contains 8 bits, or binary digits.


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.


How is a modem related to the binary and ASCII code?

look up www.shake yourself.org.com


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.


How many ascii code are there?

128 ascii codes.


What is the ASCII value of 92?

\ is the character for 92 in ASCII.


Binary coding for the word boy in ASCII-7?

Oh, dude, you want the binary code for "boy" in ASCII-7? Like, sure, I could tell you that, but why not just Google it? It's not like I have the entire ASCII table memorized in my brain or anything. But hey, if you're into that kind of stuff, knock yourself out!


When the web first began did webpages contain images?

No.. as simple as an answer could be it used to be on Telnet if you know what that is .. it is like a terminal ( DOS like page ) with images like ASCII images that you would see now as ASCII Art just like a Teletext you get on your TV


How do you type letter you with 2 dots above it?

You have to look up that character's ASCII code number. The double dots are called an umlaut if memory serves. Then you use that ASCII code number to enter the character. Exactly HOW you do that I'm a bit fuzzy on. Google "special ASCII characters" and se what that brings up !


What is oem extended ascii?

Extended ASCII is 8-bit encoding which is wider than standard ASCII and also includes all characters from standard ASCII encoding.ASCII is 7-bit, 128 possible values; Extended ASCII is 8-bit , 256 possible value;128 first characters of Extended ASCII is the same as ASCII, next 128 are additional. This why it is called Extended ASCII.What is ASCII?ASCII is mainly English language characters encoding, that is used for representation of text information.