键盘上的字符的英文单词都是什么??
比如:~!@#$%^&*()_+{}:"<>?这些符号的英文怎么拼,
  忘赐教~~~

解决方案 »

  1.   

    是ASSIC字符,直接输入就是了
      

  2.   

    .period 句号
    ,comma 逗号
    :colon 冒号
    ;semicolon 分号
    !exclamation 惊叹号
    ?question  问号
     ̄hyphen 连字符
    'apostrophe 省略号;所有格符号
    —dash 破折号
    ‘ ’single quotation s 单引号
    “ ”double quotation s 双引号
    ( )parentheses 圆括号
    [ ]square brackets 方括号
    《 》French quotes 法文引号;书名号
    ...ellipsis 省略号
    ¨tandem colon 双点号
    "ditto 同上
    ‖parallel 双线号
    /virgule 斜线号
    &ampersand = and
    ~swung dash 代字号
    §section; division 分节号
    →arrow 箭号;参见号
    +plus 加号;正号
    -minus 减号;负号
    ±plus or minus 正负号
    ×is multiplied by 乘号
    ÷is divided by 除号
    =is equal to 等于号
    ≠is not equal to 不等于号
    ≡is equivalent to 全等于号
    ≌is equal to or approximately equal to 等于或约等于号
    ≈is approximately equal to 约等于号
    <is less than 小于号
    >is more than 大于号
    ≮is not less than 不小于号
    ≯is not more than 不大于号
    ≤is less than or equal to 小于或等于号
    ≥is more than or equal to  大于或等于号
    %per cent 百分之…
    ‰per mill 千分之…
    ∞infinity 无限大号
    ∝varies as 与…成比例
    √(square) root 平方根
    ∵since; because 因为
    ∴hence 所以
    ∷equals, as (proportion) 等于,成比例
    ∠angle 角
    ⌒semicircle 半圆
    ⊙circle 圆
    ○circumference 圆周
    πpi 圆周率
    △triangle 三角形
    ⊥perpendicular to 垂直于
    ∪union of 并,合集
    ∩intersection of 交,通集
    ∫the integral of …的积分
    ∑(sigma) summation of 总和
    °degree 度
    ′minute 分
    ″second 秒
    #number …号
    ℃Celsius system 摄氏度
    @at 单价
      

  3.   

    这个也许对你有用
    Delphi 键盘码表 
     
    资料来源:Delphi Windows 单元文件 表格整理:http://www.netgocn.com 
     
    VK_LBUTTON = 1;
    VK_RBUTTON = 2;
    VK_CANCEL = 3;
    VK_MBUTTON = 4; { NOT contiguous with L & RBUTTON }
    VK_BACK = 8;
    VK_TAB = 9;
    VK_CLEAR = 12;
    VK_RETURN = 13;
    VK_SHIFT = $10;
    VK_CONTROL = 17;
    VK_MENU = 18;
    VK_PAUSE = 19;
    VK_CAPITAL = 20;
    VK_KANA = 21;
    VK_HANGUL = 21;
    VK_JUNJA = 23;
    VK_FINAL = 24;
    VK_HANJA = 25;
    VK_KANJI = 25;
    VK_CONVERT = 28;
    VK_NONCONVERT = 29;
    VK_ACCEPT = 30;
    VK_MODECHANGE = 31;
    VK_ESCAPE = 27;
    VK_SPACE = $20;
    VK_PRIOR = 33;
    VK_NEXT = 34;
    VK_END = 35;
    VK_HOME = 36;
    VK_LEFT = 37;
    VK_UP = 38;
    VK_RIGHT = 39;
    VK_DOWN = 40;
    VK_SELECT = 41;
    VK_PRINT = 42;
    VK_EXECUTE = 43;
    VK_SNAPSHOT = 44;
    VK_INSERT = 45;
    VK_DELETE = 46;
    VK_HELP = 47;
    { VK_0 thru VK_9 are the same as ASCII '0' thru '9' ($30 - $39) }
    { VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' ($41 - $5A) }
    VK_LWIN = 91;
    VK_RWIN = 92;
    VK_APPS = 93;
    VK_NUMPAD0 = 96;
    VK_NUMPAD1 = 97;
    VK_NUMPAD2 = 98;
    VK_NUMPAD3 = 99;
    VK_NUMPAD4 = 100;
    VK_NUMPAD5 = 101;
    VK_NUMPAD6 = 102;
    VK_NUMPAD7 = 103;
    VK_NUMPAD8 = 104; VK_NUMPAD9 = 105;
    VK_MULTIPLY = 106;
    VK_ADD = 107;
    VK_SEPARATOR = 108;
    VK_SUBTRACT = 109;
    VK_DECIMAL = 110;
    VK_DIVIDE = 111;
    VK_F1 = 112;
    VK_F2 = 113;
    VK_F3 = 114;
    VK_F4 = 115;
    VK_F5 = 116;
    VK_F6 = 117;
    VK_F7 = 118;
    VK_F8 = 119;
    VK_F9 = 120;
    VK_F10 = 121;
    VK_F11 = 122;
    VK_F12 = 123;
    VK_F13 = 124;
    VK_F14 = 125;
    VK_F15 = 126;
    VK_F16 = 127;
    VK_F17 = 128;
    VK_F18 = 129;
    VK_F19 = 130;
    VK_F20 = 131;
    VK_F21 = 132;
    VK_F22 = 133;
    VK_F23 = 134;
    VK_F24 = 135;
    VK_NUMLOCK = 144;
    VK_SCROLL = 145;
    { VK_L & VK_R - left and right Alt, Ctrl and Shift virtual keys.
    Used only as parameters to GetAsyncKeyState() and GetKeyState().
    No other API or message will distinguish left and right keys in this way. }
    VK_LSHIFT = 160;
    VK_RSHIFT = 161;
    VK_LCONTROL = 162;
    VK_RCONTROL = 163;
    VK_LMENU = 164;
    VK_RMENU = 165;
    VK_PROCESSKEY = 229;
    VK_ATTN = 246;
    VK_CRSEL = 247;
    VK_EXSEL = 248;
    VK_EREOF = 249;
    VK_PLAY = 250;
    VK_ZOOM = 251;
    VK_NONAME = 252;
    VK_PA1 = 253;
    VK_OEM_CLEAR = 254;  
      

  4.   

    输入 #ASSIC码,如回车换行#13#10,其余的记不起来了,查ASSIC码表吧