Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
ascii
- Page 1
Re: ASCII Problem
Programming
Software Development
14 Years Ago
by WaltP
ASCII
characters are just numbers. So if you wanted onthe the upper case letters for example, the are 'A' thru 'Z', or 65 thru 90. So 1) limit your random value from 0 to 25 (number of letters) 2) add 'A' or 65 to it. That will give you all the upper case letters.
ASCII
Programming
Software Development
16 Years Ago
by breezyy
…; fields, I am trying to ADD ALL of the characters'
ASCII
code in both fields. AN e.g First Name : JOHN…(string) Member ID should be : (
Ascii
of J) + (
Ascii
of O) + (
Ascii
of H) and so on till (
Ascii
of E) (in Last Name…
Re: ASCII
Programming
Software Development
16 Years Ago
by aktharshaik
Dear Breezyy The Asc() function returns the
ascii
value of only one character at a time. If u …want to get the
ascii
values of a group of characters, u have to use… iVar [/code] But i dont get the point in saving
ascii
codes in the DB. if u join all the asc…
Re: ASCII
Programming
Software Development
16 Years Ago
by selvaganapathy
[QUOTE]I am trying to make a unique ID for each of my records.[/QUOTE] Yes I agree Addition of
Ascii
dont give a unique number as Shaik Akthar. Better to use Auto Number or Other Algorithm. Addition of
Ascii
of ABCD is same as Addition of
Ascii
of ABDC, BACD, and all its combination.
ascii
Programming
Software Development
16 Years Ago
by cam875
are cpu's directly hardwired to no
ascii
and If i wrote my own Operating system does the cpu have a built in function that allows me to tell it an
ascii
number and it will draw it using a default font to the screen without windows help or anything?.
ASCII
Programming
Software Development
15 Years Ago
by sana zafar
… help me how to remove the non-printable characters of
ascii
from my code..I will really appreciate it. [CODE] #include… namespace std; int main() { int num; cout<<"
ASCII
CODES\n -----------"<<endl; num = 32; while(num…
Re: ascii
Programming
Software Development
16 Years Ago
by Salem
No - CPUs know nothing about
ASCII
. Nor do CPU's have "built-in" functions for anything, unless you count "multiply" as a built-in function. Nor are they capable of "drawing" anything. Neither do operating systems.
ASCII Table
Programming
Software Development
14 Years Ago
by DRzBklynite
…me. I have to : Draw the multi-page table of
ascii
characters, showing for each character value (0..255) the … jump over data string jmp start ; data string: msg1 db '
ascii
table pg 1', 0 ; I dont know how I could… nor how to seperate them to three pages msg3 db '
ascii
table pg 3', 0 start: ; set video mode mov …
Re: ASCII codes
Programming
Software Development
17 Years Ago
by vijayan121
…just like to know how to get the
ASCII
code number after inputing an
ASCII
character. a. change the locale of …std::cin from the default locale to one using an
ASCII
char set. b. read the char entered by the …user c. convert it to an int to get the
ascii
code point. d. use the tolower member of the …add 32 to get the lower case char (works for
ascii
)
Re: ASCII Table
Programming
Software Development
14 Years Ago
by DRzBklynite
… ; jump over data string jmp start ; data string: msg1 db '
ascii
table pg 1', 0 ; I dont know how I could… data to be used for msg2 db '
ascii
table pg 2', 0 ; the
ascii
table nor how to seperate them to three… pages msg3 db '
ascii
table pg 3', 0 start: ; set video mode mov ax…
ASCII codes
Programming
Software Development
17 Years Ago
by mstrmnd2008
I am doing a c++ assignment and just need a little help. I would just like to know how to get the
ASCII
code number after inputing an
ASCII
character. The user of this program should be able to input an uppercase letter and recieve the
ASCII
code value and its corresponding lower case letter with
ASCII
code value. Thanks:icon_smile:
ASCII 3D Magic Eye movie
Community Center
Geeks' Lounge
15 Years Ago
by hotmatrixx
… title says. [URL="http://www.kammerl.de/
ascii
/AsciiStereoMovie.php"]
ASCII
3D Magic Eye movie[/URL] You can customise the…;http://www.asciimation.co.nz/#"]HAND DRAWN STAR WARS:
ASCII
MOVIE.[/URL] This deserves credit purely because of the skill… guy has put into this project... Comment! Add your own
Ascii
links here!
Re: ASCII Code
Programming
Software Development
15 Years Ago
by jonsca
…mainframes). From my understanding of it, if your system supports
ASCII
(see this [URL="http://web.cs.mun.ca/~…michael/c/
ascii
-table.html"]table[/URL]) lowercase a, for example,… international alphabets, but still has a subset for the original
ASCII
codes (entitled UTF-8). Well, that's probably way …
Re: ASCII Code
Programming
Software Development
15 Years Ago
by restrictment
…mainframes). From my understanding of it, if your system supports
ASCII
(see this [URL="http://web.cs.mun.ca/~…michael/c/
ascii
-table.html"]table[/URL]) lowercase a, for example,… international alphabets, but still has a subset for the original
ASCII
codes (entitled UTF-8). Well, that's probably way …
Re: ASCII Code
Programming
Software Development
15 Years Ago
by Sinaru
…represent the same thing in another machine. Hence
ASCII
standard was created. In
ASCII
'A' is represented as 65 if you …the bit pattern and then will compare it with the
ASCII
TABLE and then will give you the Character or …Note that Enter, space, delete buttons are also values in
ASCII
TABLE but because you cannot print them, they are commonly…
Re: ASCII codes
Programming
Software Development
17 Years Ago
by Narue
… std::cin from the default locale to one using an
ASCII
char set. >b. read the char entered by the… >c. convert it to an int to get the
ascii
code point. >d. use the tolower member of the… = c + 'a'-'A'; For future reference, while this works with
ASCII
, UTF-8, and UTF-16 (the encodings you're most…
ASCII Values for the Keyboard entry
Programming
Software Development
18 Years Ago
by RAGHAVENDRAS
… Here is the script from which I can get the
ASCII
values from the keyboard entry made by the user. #!…c:\perl\bin -w # sascii - Show
ASCII
values for keypresses use Term::ReadKey; ReadMode('cbreak'); print "…;Press keys to see their
ASCII
values. Use Ctrl-C to quit.\n"; while (…
ascii converter
Programming
Software Development
16 Years Ago
by Trekker182
… through my two strings and add up all of the
ascii
values of the characters in them. However, it's not… case it wouldn't matter, then convert them both to
ascii
values and then compare those values to each other, if… they are both the same
ascii
values they will be anagrams. Thanks. [CODE] for (c=0…
ASCII value string manipulation
Programming
Software Development
15 Years Ago
by Ineedhelpplz
… take a file in and write to the output the
ASCII
value of each character. It is supposed to print the…
ASCII
name of the character followed by the hexadecimal value. I … currently just working on getting it to output the proper
ascii
value when given a file.
*#ASCii non-printable form
Programming
Software Development
15 Years Ago
by Idontknowc
… create a code in Cygwin using pure C to display
ASCII
control characters that may be present in the text file… in a
ASCII
control characters non-printable form. I can call to a… text file to display its contents but in normal
ASCII
characters but I cannot figure out how to display NON…
Re: *#ASCii non-printable form
Programming
Software Development
15 Years Ago
by jephthah
non-printable codes have the
ascii
values from 0 - 31
ascii
codes for capital letters start at value 65. the charcter …: [CODE]for (i = 0; i < 32; i++) printf("
ASCII
%02d = ^%c\n", i, ('A' + i)); [/CODE] if it…
Re: *#ASCii non-printable form
Programming
Software Development
15 Years Ago
by Idontknowc
tested it and it displays all 32
ascii
non char but i'm not sure i'm clarifying … to turn that text file's contents to display non
ascii
characters for e.g. text file contents: hello how are… you? = non printing
ascii
character equivalent. sorry if I seem to have interpreted incorrectly…
ASCII Problem
Programming
Software Development
14 Years Ago
by VP2
… a while and say [CODE] while(ch<
ASCII
HERE&&ch>
ASCII
HERE) { //generating random characthers } [/CODE] But I…
Re: ascii vb6 program?
Programming
Software Development
14 Years Ago
by AndreRet
:) No problem JX.:) Below is a list of all
ascii
values. The "Home, End, F1 to F12 etc&…= Enter, vbHome = Home etc. Table of
ASCII
Characters This table lists the
ASCII
characters and their decimal, octal and hexadecimal numbers…0x3f | _ 95 0137 0x5f | (del) 127 0177 0x7f
ASCII
Name Description C Escape Sequence nul null byte \0 bel…
Re: ASCII values and characters
Programming
Software Development
20 Years Ago
by Dave Sinkula
… to know how to write a program to print all
ascii
values and equivalent characters using a while loop. [/QUOTE]Show… folks can help with any problems you have. [QUOTE=smithag261]
ascii
values vary from 0 to 255.[/QUOTE]Actually, no…,
ASCII
is a 7-bit code and thus has a range …
Re: ascii converter
Programming
Software Development
16 Years Ago
by Trekker182
… the string was. I'm just trying to delete the
ascii
value of the last character that's being added twice…. I placed this just after the for loop for the
ascii
converter, but not inside it.
Re: ascii and utf-8 with StreamReader
Programming
Software Development
15 Years Ago
by laailalalaa
thanks snake. i read in that article that "A UTF-8 file that contains only
ASCII
characters is identical to an
ASCII
file. ", so my guess again is that if i have an
ASCII
file that only contains digits and commas, i can open it with File.OpenText("pathtofile").
Re: *#ASCii non-printable form
Programming
Software Development
15 Years Ago
by Idontknowc
…;>text file contents: hello how are you? = non printing
ascii
character equivalent Huh? You mean do the opposite of what… post up the question here: Modify the program to display
ASCII
control characters that may be present in the text file…
Re: ascii value processing
Programming
Software Development
13 Years Ago
by sridhar.selva
hey thanks, actually i need to print the
ascii
values instead of the characters, i mean that i ll …be getting the
ascii
values and i need to print the
ascii
values, example if i get "…
Re: ASCII to Binary
Programming
Software Development
11 Years Ago
by JamesCherrill
… into the trap of thinking of Java chars as
ASCII
. They are not.
ASCII
is a 7 bit code with just English… letters, which have the same values as in
ASCII
). If you assume
ASCII
then your code will fall over as soon as…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC