cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
@ symbol
@ symbol
May 30, 2016 at 10:28pm UTC
Irhcsa
(82)
What is the Virtual Key Code for the "@" symbol? Can't find it on the list or anywhere else.
Places I've checked:
Google.com
https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx
May 30, 2016 at 10:56pm UTC
Moschops
(7244)
The "@" key effectively doesn't exist, so it doesn't have a Virtual Key Code. It's expressed with the chord of SHIFT and some other key simultaneously.
Jun 1, 2016 at 5:08am UTC
whitenite1
(1785)
@Irhcsa
Here's what I found..
Dec Oct Hex Bin Symbol HTML Description
64 100 40 01000000 @ @ At symbol
I tried..
cout <<
"The AT symbol = \x40 "
<<
char
(64) <<
"..."
<< endl;
and I saw 2 @ symbols.
Jun 1, 2016 at 8:59am UTC
Thomas1965
(4571)
http://www.asciitable.com/
Topic archived. No new replies allowed.