103

What Unicode character symbol(s) express duration (such as a clock, hourglass, or other timepiece)?

For example "★3⅔" instead of "3 hours and forty minutes", where ★ is a time symbol.

Dave Jarvis
  • 30,436
  • 41
  • 178
  • 315
yegor256
  • 102,010
  • 123
  • 446
  • 597

4 Answers4

221

The following code points exist related to clocks, watches, and other devices to indicate time:

⌚  U+0231A  WATCH
⌛  U+0231B  HOURGLASS
⏰  U+023F0  ALARM CLOCK
⏱  U+023F1  STOPWATCH
⏲  U+023F2  TIMER CLOCK
⏳  U+023F3  HOURGLASS WITH FLOWING SAND
⧖  U+029D6  WHITE HOURGLASS
⧗  U+029D7  BLACK HOURGLASS
  U+1F4C5  CALENDAR
  U+1F4C6  TEAR-OFF CALENDAR
  U+1F550  CLOCK FACE ONE OCLOCK
  U+1F55C  CLOCK FACE ONE-THIRTY
  U+1F551  CLOCK FACE TWO OCLOCK
  U+1F55D  CLOCK FACE TWO-THIRTY
  U+1F552  CLOCK FACE THREE OCLOCK
  U+1F55E  CLOCK FACE THREE-THIRTY
  U+1F553  CLOCK FACE FOUR OCLOCK
  U+1F55F  CLOCK FACE FOUR-THIRTY
  U+1F554  CLOCK FACE FIVE OCLOCK
  U+1F560  CLOCK FACE FIVE-THIRTY
  U+1F555  CLOCK FACE SIX OCLOCK
  U+1F561  CLOCK FACE SIX-THIRTY
  U+1F556  CLOCK FACE SEVEN OCLOCK
  U+1F562  CLOCK FACE SEVEN-THIRTY
  U+1F557  CLOCK FACE EIGHT OCLOCK
  U+1F563  CLOCK FACE EIGHT-THIRTY
  U+1F558  CLOCK FACE NINE OCLOCK
  U+1F564  CLOCK FACE NINE-THIRTY
  U+1F559  CLOCK FACE TEN OCLOCK
  U+1F565  CLOCK FACE TEN-THIRTY
  U+1F55A  CLOCK FACE ELEVEN OCLOCK
  U+1F566  CLOCK FACE ELEVEN-THIRTY
  U+1F55B  CLOCK FACE TWELVE OCLOCK
  U+1F567  CLOCK FACE TWELVE-THIRTY
  U+1F570  MANTELPIECE CLOCK
  U+1F5D3  SPIRAL CALENDAR PAD

You can copy and paste the characters from this page into most editors.

At unicode-table.com you might find more useful code points.

Matthias Braun
  • 32,039
  • 22
  • 142
  • 171
tchrist
  • 78,834
  • 30
  • 123
  • 180
24

Chars:

◴◵◶◷

Unicode number:

U+25F4 - U+25F7

HTML code:

◴ - ◷

are working for me

Matthias Braun
  • 32,039
  • 22
  • 142
  • 171
iiic
  • 1,366
  • 2
  • 15
  • 23
  • Interesting, those code points are part of Unicode's [geometric shapes](https://en.wikipedia.org/wiki/Geometric_Shapes). There's also `WHITE SQUARE WITH UPPER RIGHT QUADRANT` (◳) and friends in the same block. But there's no telling if ◳ denotes 12:15 or 03:00. – Matthias Braun May 01 '19 at 13:45
5

A collection of clock faces has been proposed as part of the new Emoji set, in the range from U+1F550 to U+1F55B. Browser/font support is pretty much completely absent, sadly.

Here's one of the clock faces:

Clock face

Also proposed is an alarm clock symbol at U+23F0:

Alarm clock

More about the Emoji set here.

Wander Nauta
  • 18,832
  • 1
  • 45
  • 62
3

Maybe U+231B HOURGLASS

Check that similar question: What Unicode character do you use in your website? (instead of image icons)

Community
  • 1
  • 1
IProblemFactory
  • 9,551
  • 8
  • 50
  • 66
  • 2
    Possibly the one before it as well: U+231A ⌚ – Adam Bryzak Mar 25 '11 at 20:23
  • 5
    For what it's worth, both those characters show up as an empty rectangle on my system. You run this risk if you try to use too-clever Unicode characters, since not all systems display them. – Greg Hewgill Mar 25 '11 at 20:27
  • @Greg what is "the system"? putty+lynx? – yegor256 Mar 25 '11 at 20:28
  • MSIE on Win also doesn't display it either. FF/Safari/Chrome on Win do. – BalusC Mar 25 '11 at 20:31
  • They display in Mac OS X with Safari for me. They're both contained in the Apple Symbols font. – Adam Bryzak Mar 25 '11 at 20:34
  • 4
    These comments nicely illustrate the variance between display of unusual characters on various systems that seem similar but aren't. I might be using a different version of OS X than Adam, but it's hard for your web site to tell. – Greg Hewgill Mar 25 '11 at 20:36
  • 1
    It's nothing to do with operating systems or other software. It has everything to do with whether or not one has a font installed that contains a glyph for the codepoint. The days when Unicode parsing and rendering infrastructure support was flaky between browsers and operating systems are long gone. – Delan Azabani Jul 30 '11 at 09:50
  • 1
    right, and some systems come pre-loaded with the right fonts, and others dont. – Shawn Taylor Jun 29 '14 at 04:28