Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Unicode glyph that looks like a "key" icon? [closed]

Unicode has a million icon-like glyphs, but they're not always easy to search by, since I don't always know what they look like.

Is there a Unicode glyph that looks like a "key"? Or is there a symbol that's used in database circles to mean "primary key", which is in Unicode?

like image 539
Alec Avatar asked Sep 05 '09 22:09

Alec


People also ask

Are there key symbols?

The key or lock icon is the Android symbol for VPN service. It will remain within the notification bar when Safe Browsing is enabled.

What is the Unicode key?

Unicode input is the insertion of a specific Unicode character on a computer by a user; it is a common way to input characters not directly supported by a physical keyboard. Unicode characters can be produced either by selecting them from a display or by typing a certain sequence of keys on a physical keyboard.


3 Answers

U+1F511 🔑 KEY (128273 decimal)

Also:

U+1F5DD 🗝 (Decimal: 🗝) OLD KEY

U+26BF ⚿ SQUARED KEY

U+1F510 🔐 CLOSED LOCK WITH KEY

U+1F512 🔒 LOCK

U+1F513 🔓 OPEN LOCK

U+1F50F 🔏 LOCK WITH INK PEN

key and lock symbols

like image 140
hemflit Avatar answered Oct 21 '22 18:10

hemflit


To find useful symbols, I have this resource:

http://shapecatcher.com

Allows you to draw a shape, which it then searches for similarly shaped unicode symbols.

I often end up using shapecatcher these days just because it's a fun break just to be able to draw the shape that you want and have the site pull it up for you. At least, sometimes it will pull it up.

Misc. Symbols Blocks

http://shapecatcher.com/unicode/block/Miscellaneous_Symbols_And_Pictographs is also a great category of unicode symbols, though as with all unicode, you may have to test compatibility.

This is duplicated from my answer here because I think the approach will be useful to others besides just me: What Unicode character do you use in your website? (instead of image icons)

like image 21
Kzqai Avatar answered Oct 21 '22 20:10

Kzqai


I used a little Python 3 script to look, and the closest I found does not display here for me (does display in Idle on my machine), but it is:

9897 ⚩ HORIZONTAL MALE WITH STROKE SIGN

(Looks like a male sign pointed right with a perpendicular stroke added between the arrow and circle)

I searched for various matches like "KEY" and "LOCK" in the unicode names using Python's unicodedata module and no luck there.

Editing to add - Ah hah - one that looks even more like a key:

9911 ⚷ CHIRON

enter image description here

I give both of the above code points in decimal. To see them and their hex codes, go to this link:

http://www.unicode.org/charts/PDF/U2600.pdf

See 26B7 in particular for the Chiron.

like image 34
Anon Avatar answered Oct 21 '22 19:10

Anon