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

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.


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.


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).