answersLogoWhite

0


Best Answer

47 in BCD & ASCII

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you show number fortyseven in ASCII?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the name for the fortyseven-sided polygon?

tetracontakaiheptagon


What number of characters in ASCII-8 number set?

128


What is number of Y?

0059, possibly (ASCII).


What is the ASCII number for b?

Decimal 98


What is ASCII code of U?

Upper case U in ASCII/Unicode is binary 0101011, U is code number 85. Lower case u in ASCII/Unicode is binary 01110101, u is code number 117.


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)


How do you write a degree sign on the computer?

On Windows Alt + 0176 Hold down the Alt key and type the ASCII number for the degree sign which is 176. Use Charmap to find the ascii number.


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 symbol is not a valid entry for a cell that requires a number?

Anything thats Not ASCII


Every character on the keyboard is coded with a binary number The code is called?

ascii


What is twenty percent of fortyseven thousand pounds?

20% of 47000 pounds = 47000*20/100 = 9400 pounds


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.