How can I display the  (U+F8FF, Apple logo) character on Windows?

In Apple's marketing materials, the company often refers to the Apple Watch as "Watch". If that last sentence displayed as "apple symbolWatch", congratulations! You're probably using an Apple device.

To demonstrate, here's what the Wikipedia page for Apple Watch looks like on an iPad.

Apple watch Wikipedia page viewed on iPad

Here's what that same section looks like on Windows 10.

Apple watch Wikipedia page viewed on a Windows PC

Occasionally, you can even see this happen on Stack Exchange when browsing Ask Different.

Misformatted Apple emoji on Ask Different

Is there any way to make the Apple logo  display properly on a Windows PC?


Edit: It's worth noting this issue happens in Google Chrome, Firefox, and Microsoft Edge, though the symbol looks different in each browser.

  • Google Chrome:
  • Mozilla Firefox:
  • Microsoft Edge:

Solution 1:

In Firefox, the character appears in a box with the hexadecimal characters F8FF. U+F8FF is a private-use character code point, intended for specific applications that need to display specialized characters not specified by the Unicode standard. For example, a website's custom typeface may assign site-specific glyphs to private-use code points, and a mobile device's own fonts may use the code points for their own purposes.

These characters are by their very nature application-specific and most likely will not render correctly outside their source application.

Solution 2:

The real question to you is, for what purpose you need it?

This character is Unicode F8FF, which is in the Private Use Areas and is not defined by the Unicode standard what it should be. So Apple in their own systems uses a font (or fonts) in which they placed the Apple logo at the F8FF location, but on Windows systems no normal font has this symbol, and certainly not in the same exact location.

So the answer to the question on how to display it in your browsers, the answer is that there isn't really a way to do that.

However - and here's where I add more than previous answers - if you just want to use this symbol on a Windows machine in different programs for typing and printing, there is a way to got the same symbol. Here's how:

  1. First, we need to open the Window Character Map app. So, just press Windows+R keys from keyboard to open Run window and then type the word charmap and hit Enter.
  2. This will open the Characters Map app, this built-in Windows app holds lots of special characters and symbols like Spade, Heart, Club, Diamond, Smiling faces and much more according to the font type. Let’s see how to type Apple logo symbol.
  3. Select font face “Baskerville Old Face” from Font drop-down menu. Scroll down a bit and you’ll see Apple logo in the characters list. enter image description here
  4. Select the Apple logo symbol, hit the “Select” and then “Copy” buttons to copy the Apple character to the clipboard.
  5. Now go back where you want to use this Apple symbol and Paste it by pressing Ctrl+V keys from the keyboard.

Note: this is not using the same F8FF glyph that Apple's fonts use, but instead it has the same symbol in a different Private Use Area, F000.

Solution 3:

The other answers already explain why you cannot display U+F8FF as an Apple logo on non-Apple systems. But for future reference:

If you would be in control of the website (which you're not on Wikipedia, nor on Ask Different), then you could add a web font to reliably display such icons on that website.

The well-known Font Awesome includes the Apple logo as fa-apple:

<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">

...

<p><b>Apple Watch</b> (stylized 
as <i class="fa fa-apple" aria-hidden="true" title="Apple"></i>WATCH) ...</p>

<p>The Windows Logo (printed 
as <i class="fa fa-windows" aria-hidden="true" title="Windows logo"></i>) ...</p>

This will work in all modern browsers; you can have a look with yours.

In Font Awesome, the code point is not U+F8FF but U+F179, and fa-windows is U+F17A (both also in the private use area, like explained in other answers).

Solution 4:

Windows comes with an application called Private Character Editor. Open it, select the code F8FF from the last line and the last column and then draw in your own Apple logo as well as good or bad as you like.

You may have to restart the browser for the font to start working.

screenshot

Solution 5:

I'm reading the question as if you go to the Wikipedia page—you want to see the the correct glyph displayed on your screen. To do this, I think you would have to find a font or create your own font with the Unicode point U+F8FF displaying the glyph, then install it into your font folder.

However this would mean if you go to a different Web page or an internal application which used U+F8FF - you would again see the Apple logo even if it was not appropriate.

For the question of which font you could use look at Which (default) fonts contain the Windows/Apple logo? which would then lead to exporting the Macintosh font and importing it into Windows - I don't have an Apple so I have not looked for an answer to if that is possible.