@ symbol

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
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.
@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.
Topic archived. No new replies allowed.