`~!$^*()[]{}\|;:'",<>/?在英文怎么读?

'exclam'='!' 
'at'='@' 
'numbersign'='#' 
'dollar'='$' 
'percent'='%' 
'caret'='^' 
'ampersand'='&' 
'asterisk'='*' 
'parenleft'='(' 
'parenright'=')' 
'minus'='-' 
'underscore'='_' 
'equal'='=' 
'plus'='+' 
'bracketleft'='[' 
'braceleft'='{' 
'bracketright'=']' 
'braceright'='}' 
'semicolon'=';' 
'colon'=':' 
'quote'=''' 
'doublequote'='"' 
'backquote'=''' 
'tilde'='~' 
'backslash'='\' 
'bar'='|' 
'comma'=',' 
'less'='<' 
'period'='.' 
'greater'='>' 
'slash'='/' 
'question'='?' 
'space'=' '

--------------------------------------------------------------------
 ̄ hyphen 连字符 
' apostrophe 省略号;所有格符号 
— dash 破折号 
‘ ’single quotation marks 单引号 
“ ”double quotation marks 双引号 
( ) parentheses 圆括号 
[ ] square brackets 方括号 
Angle bracket 
{} Brace 
《 》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 单价
x'是x prime(比如转置矩阵)
x"是x double-prime</DIV>

随机推荐

  1. MySql的rpm安装

    MySQL 5.5(rpm格式)在Linux 上安装 Linux系统上安装MySQL 5.5prm 1.准备工作 从MySQL官网上分别下载mysql服务器端于客户端包. 下载步骤:Downloads ...

  2. 基于百度定位SDK的定位服务的实现

    转载请标明出处:http://blog.csdn.net/android_ls/article/details/10179013 一.定位模块的需求:我们想知道使用我们应用的用户的大概位置,每隔五分钟 ...

  3. Apache HTTP Server mod_dav.c 拒绝服务漏洞(CVE-2013-1896)

    漏洞版本: Apache HTTP Server < 2.2.25 漏洞描述: CVE ID:CVE-2013-1896 Apache HTTP Server是一款流行的WEB服务器 Apach ...

  4. linux新内核中关闭硬盘的DMA

    vortex86 SIS550 Minit-5250E瘦客户机,使用CF卡启动,显示不支持DMA. 搜索得新内核已基本不再使用ide=nodma参数了,查到这篇文章:“Debian下关闭CF卡的DMA ...

  5. lightoj 1300 边双联通分量+交叉染色求奇圈

    题目链接:http://lightoj.com/volume_showproblem.php?problem=1300 边双连通分量首先dfs找出桥并标记,然后dfs交叉着色找奇圈上的点.这题只要求在 ...

  6. Postman 安装 & 资料

    安装 下载地址: http://chromecj.com/web-development/2014-09/60/download.html 怎么在谷歌浏览器中安装.crx扩展名的离线Chrome插件? ...

  7. Linux 数学运算

    let 命令 a= b= let c=a+B echo $c let a++ let b++ echo $a $b []方法 a= b= echo $[a+b] echo $[$a+$b] (()) ...

  8. freemarker入门教程

    FreeMarker的模板文件并不比HTML页面复杂多少,FreeMarker模板文件主要由如下4个部分组成: 1,文本:直接输出的部分 2,注释:<#-- ... -->格式部分,不会输 ...

  9. 最常用的Eclipse快捷键【转载】

    本文是一些最实用.最齐全.最省时间的 Eclipse 快捷键总结,这些快捷键可以让帮助你完成工作中的任何一个操作.欢迎参考. 1. ctrl+shift+r:打开资源 这可能是所有快捷键组合中最省时间 ...

  10. 字符串的encode与decode解决乱码问题

    !/usr/bin/env python coding=utf-8 s="中文" if isinstance(s, unicode): s=u"中文" prin ...