PDA

View Full Version : Make ur written materials more beautiful by using AASCII keys


Siddharth Maheshwari
20-01-2007, 09:24 PM
Tutorial number = 3

This Tutorial is only for beginners

Hello frnds,
this tutorials is basically for beginners but it may prove useful to advanced and intermediate users also.
In this tutorial u will learn how to make ur e-mails , textdocuments , presentations ,icons and general writing beautiful using AASCII keys .I will like to tell u that AASCII values may or may not work somewhere for e.g in this page also many AASCII keys do not work. e.gs of AASCII keys are

‼ ¶ § ♀ ♂ ♪ ♥ ♣ ♠ • ○ ♂ § ↑ ↓ → ← ∟ ↔ ▲ ▼ ± Φ ╘ ╚ ╟ ╞ ┼ etc.

To use AASCII keys somewhere u have to hold alt and press the AASCII number. For e.g
The result for alt + 45 will be -
The result for alt + 254 will be ■
The result for alt + 253 will be ²
etc

I have founded the AASCII keys and there values by making a C# program. If u want that C# program u can reply for it.
I have also created a word document that tells the AASCII keys and their values.

545

n2casey
20-01-2007, 09:41 PM
Here is the C program to find ASCII values.


#include<stdio.h>
#include<conio.h>

void main()
{
char x;
clrscr();
do
{
x = getch();
printf("ASCII value of %c is %d\n",x,x);
}
while(x != 13)
getch();
}


Here 13 is the ASCII value of Enter key so the program will run till Enter is not pressed.

Pathik
20-01-2007, 09:59 PM
hehe... this was the first program i had made wen learning C...

/*ASCII VALUES (p@t)*/

#include<stdio.h>
#include<conio.h>

void main()
{
int a;
clrscr();
printf("ASCII VALUES.. 1-256 by Pathik S\n");
printf("Enter a number from 1-256 to get its ASCII value\n");
scanf("%d",&a);
printf("%d %c",a,a);
printf("\n");
getch();
}

n2casey
20-01-2007, 10:03 PM
^^
Me too, made the third program in C when started learning C.

koolbluez
20-01-2007, 10:15 PM
And ya... no need of downloadin the zip file.
Check out here (http://home.earthlink.net/%7Eawinkelried/keyboard_shortcuts.html), here (http://www.yellowpipe.com/yis/tools/ASCII-HTML-Characters/index.php), here (http://www.starr.net/is/type/altnum.htm) or here (http://www.lazytools.com/unicode-ascii/)'s an online tool.
U can even check out ur windows utility.. Character Map (Run charmap)

Make ur written materials more beautiful by using AASCII keys And it's ASCII

n2casey
20-01-2007, 11:10 PM
@ siddharth_2463107

2463107 is that ur landline phone number?????? :D :D :D

[Don't take otherwise, just asking.]

koolbluez
21-01-2007, 12:04 PM
I am getting very bad results from this tut
One more thing :-
This tutorial is only for beginners.Dont feel bad, maan. Just givin what we know too.
Helpin u out.. not tryin 2 disappoint or put u down. Nice try.

Ron
21-01-2007, 12:37 PM
Hey keep posting.................
The more u share the more u gain.......................

sarkar
21-01-2007, 06:08 PM
good at ur age
already knowing.......

Pathik
21-01-2007, 06:14 PM
hey sid man... good tut ... and its not safe to give ur phone no here...

Pathik
21-01-2007, 06:26 PM
hey u can pm the mods /admins and request them to change ur id...

Vishal Gupta
21-01-2007, 08:01 PM
@Siddharth, its ASCII, not AASCII ;)