Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the HTML unicode character for a "tall" right chevron? [closed]

I am looking for a unicode right chevron character, with no handle on the left, and I would like the top point and bottom point to be spread far apart. Similar to Ubuntu's (website) arrow in the search box.

I don't want »(») or →(→) or simply >. The problem with the first is there are two chevrons, not just one. The other one is way too small and has a handle. The third one has a vertex that is too acute.

I have looked at just about every unicode chart there is, and if there is none, then I'll just have to use an image (like Ubuntu). I'll deal with it, but that is a last resort.

Any help would be much appreciated!

like image 703
ModernDesigner Avatar asked Jan 12 '13 22:01

ModernDesigner


People also ask

What is a Chevron HTML?

<i class="icon-chevron-down"></i>

How do you write Unicode characters in HTML?

You can enter any Unicode character in an HTML file by taking its decimal numeric character reference and adding an ampersand and a hash at the front and a semi-colon at the end, for example &#8212; should display as an em dash (—). This is the method used in the Unicode test pages.


2 Answers

Use '›'

&rsaquo; -> single right angle quote. For single left angle quote, use &lsaquo;

like image 124
Tieson T. Avatar answered Sep 21 '22 15:09

Tieson T.


From the description and from the reference to the search box in the Ubuntu site, I gather that you actually want an arrowhead character pointing to the right. There are no Unicode characters designed to be used as arrowheads, but some of them may visually resemble an arrowhead.

In particular, if you draw your idea of the character at Shapecatcher.com, you will find many suggestions, such as “〉” RIGHT-POINTING ANGLE BRACKET' (U+232A) and “❭” MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT (U+276D).

Such characters generally have limited support in fonts, so you would need to carefully write a longish font-family list or to use a downloadable font. See my Guide to using special characters in HTML.

Especially if the intended use is as a symbol in a search box, as the reference to the Ubuntu page suggests, it is questionable whether you should use a character at all. It’s not really an element of text here; rather, a graphic symbol that accompanies text but isn’t a part of it. So why take all the trouble with using a character (safely), when it isn’t really a character?

like image 36
Jukka K. Korpela Avatar answered Sep 21 '22 15:09

Jukka K. Korpela