Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ascii code for less than or equal to

Tags:

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

like image 817
coolguy Avatar asked Aug 27 '12 10:08

coolguy


People also ask

What ASCII 63?

It is the Unicode replacement character, U+FFFD, aka ChrW(&HFFFD) .

What is the ASCII code for special characters?

Special Characters(32–47 / 58–64 / 91–96 / 123–126): Special characters include all printable characters that are neither letters nor numbers. These include punctuation or technical, mathematical characters.


1 Answers

The character isn't in the ASCII table. However, there are several ways to embed it in HTML.

Firstly, using HTML entities: either ≤, ≤, or &#x2264. 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.

like image 97
Nico Burns Avatar answered Oct 13 '22 01:10

Nico Burns