Make ur written materials more beautiful by using AASCII keys

How much useful is this post


  • Total voters
    5
Status
Not open for further replies.
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.

View attachment 545
 
Last edited:

n2casey

Super Hero - Super Powers
Here is the C program to find ASCII values.

Code:
#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

Google Bot
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();
}
 

koolbluez

Šupər♂ - 超人
And ya... no need of downloadin the zip file.
Check out here, here, here or here's an online tool.
U can even check out ur windows utility.. Character Map (Run charmap)

siddharth_2463107 said:
Make ur written materials more beautiful by using AASCII keys
And it's ASCII
 
Last edited:

n2casey

Super Hero - Super Powers
@ siddharth_2463107

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

[Don't take otherwise, just asking.]
 

koolbluez

Šupər♂ - 超人
siddharth_2463107 said:
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

||uLtiMaTE WinNER||
Hey keep posting.................
The more u share the more u gain.......................
 
Status
Not open for further replies.
Top Bottom