5

I'm looking for angle brackets which point up and down as UTF-8 characters.

Just for clarification: I need two characters, an angle bracket pointing up and one pointing down.

enter image description here

3

You can consult one of many UTF-8 character lists available on the Internet.

Example: http://www.fileformat.info/info/charset/UTF-8/list.htm

Specifically:

2

You could use:

  • ︿ / ︿ : ︿ aka «Vertical Left Angle Bracket», ref
  • ﹀ / ﹀ : ﹀ aka «Vertical Right Angle Bracket» ref

Logical and and logical or are two other search terms that should give some options. E.g.:

∧ ⋀ ⋏ ⩑ ⩞ ⩠ Logical and

∨ ⋁ ⋎ ⩒ ⩣ ⩢ Logical or

Also check: https://unicode-search.net/unicode-namesearch.pl?term=angle

0

You can use left or right angle bracket, or lower than / greater than chars, with css rotation :

content:"<";
transform:rotate(90deg)
0

I found these 2 options at www.w3schools.com

(& #8896;) for ⋀ -or- (& #x39B;) for Λ

Your Answer

By clicking "Post Your Answer", you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.