问题
I cant find it on google.
What is the ASCII code for less than or equal to. I need this ≤
to be outputted in my browser
回答1:
The character ≤
isn't in the ASCII table. However, there are several ways to embed it in HTML.
Firstly, using HTML entities: either ≤
, ≤
, or ≤
. Just place this code in your HTML where you want the ≤
symbol to be.
Alternatively, ensure that your html file is utf8
encoded, and include the meta tag <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
in the <head>
of your document. You can then copy and paste the ≤
character directly into your document.
回答2:
You can use ≤
for ( ≤ ) or ≥
( ≥ )
回答3:
according to this documentation.
HTML Entity (decimal) ≤
HTML Entity (hex) ≤
HTML Entity (named) ≤
回答4:
ALT-243 = ≤
ALT-242 = ≥
ASCII is very handy.
回答5:
That character isn't in the ASCII table. You may want to look into Unicode.
回答6:
I always just underline < and > which are standard keyboard characters. It may be a little clugey, but it works, and it saves remembering numbers.
Frank
来源:https://stackoverflow.com/questions/12140003/ascii-code-for-less-than-or-equal-to