ASCI Codes

Welcome to RCTalk

Come join other RC enthusiasts! You'll be able to discuss, share and private message with other members of our community.

This site may earn a commission from merchant affiliate
links, including eBay, Amazon, and others.

GilBeQuick

Hardcore RCTalk User
Messages
1,647
Reaction score
0
RC Driving Style
Where can I find a list of what all the codes are? You know, the ones where you either hold down shift or control, then type in the numbers and end up with a funky letter or symbol. Thanks!
 
#include <iostream>

using namespace std;

int i;
main()
{
for (i = 1; i < 255; i++)
cout << i << " " << char(i) <<endl ;

There, now run this through a C++ compiler and you're all set.

Thomas
 
Riiiiiiiiiiiiiiight. I think if I knew my way around C++ I wouldn't have asked the question in the first place.
 
If you're on a Windows machine, find your character maps. Should be under Accesories on your start menu. Open that. then pick the font you're using and it will show you all the possible characters and keystrokes needed to get them...
 
YES SIR! That's it. Dang I couldn't remember what it was called (character map) for the life of me.
Thanks a lot.
 
Originally posted by Scummer
#include &lt;iostream&gt;

using namespace std;

int i;
main()
{
for (i = 1; i &lt; 255; i++)
cout &lt;&lt; i &lt;&lt; &quot; &quot; &lt;&lt; char(i) &lt;&lt;endl ;

There, now run this through a C++ compiler and you're all set.

Thomas

you forgot a closing "}" bracket on your void main() :hehe:
 
Originally posted by RobH


you forgot a closing &quot;}&quot; bracket on your void main() :hehe:

Dang... no wonder it wouldn't work :doc:
 

Similar threads

Back
Top