如何在javascript中添加位图中的乘法和除法符号?

时间:2015-04-29 02:38:13

标签: javascript

我无法弄清楚如何添加这些符号.. 在我的.font位图文件中,它表示代码为0xF7进行除法 乘法符号为0xD7 ..

1 个答案:

答案 0 :(得分:1)

你的意思是,如何使用unicode符号?只需使用unicode转义序列:$query="select * from Customers where Email = '$email'"; $result=mysql_query($query); $numOfRows=mysql_num_rows($result); if($numOfRows==1) { print"An account with that email is already created..<a href ='createAccount.php'>Please enter a new account email.</a>"; print"<a href ='createAccount.php'></a>"; } else { $query="insert into Customers(Email,Passwd,FirstName,LastName,Address1,ZipCode,State) VALUES ('$email','$password','$fName','$lName','$address1',$zip,'$state')"; mysql_query($query); print"Account created."; }

\uxxxx