← Back to Home Useful Stuff

Change Windows Emojis to Apple Emojis

August 7, 2026 · 3 weeks ago · 2 min read
🇸🇦 العربية
Table of Contents
  1. Why this method specifically
  2. How to start
  3. FAQ
  4. I did everything and X still looks the same
  5. Some apps changed and others did not
  6. Will a Windows update revert it?
  7. Wrapping up

Windows emojis look nothing like Apple’s, so whatever you send from your PC arrives looking off. The fix is to swap the Windows emoji font for Apple‘s own, free, and without deleting anything from your system.

The font comes from an open source project that ships an update with every macOS release. You point Windows to it with a single line, and every emoji in every app turns into Apple’s.

Windows emojis compared with Apple emojis

Full walkthrough on video : youtube.com/watch?v=01ho_gGqXv0

Why this method specifically

Project releases page with the Apple emoji font build for Windows

How to start

Download AppleColorEmoji-Windows.ttf from the project releases page, open PowerShell as administrator, and run the commands in order.

Command one : copies the Apple font into the Windows fonts folder, next to the original and without removing it. Change basim to your own username, or point it at wherever you saved the font.

copy "C:\Users\basim\Desktop\AppleColorEmoji-Windows.ttf" "C:\Windows\Fonts\AppleColorEmoji-Windows.ttf"

Command two : tells Windows to read emojis from the new font instead of the old one. Restart fully afterwards and you will see the change.

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" -Name "Segoe UI Emoji (TrueType)" -Value "AppleColorEmoji-Windows.ttf"

Command three : whenever you want your Windows emojis back, this points the setting at the original font. Restart after it.

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" -Name "Segoe UI Emoji (TrueType)" -Value "seguiemj.ttf"

The Windows emoji panel showing Apple emojis after the change

FAQ

I did everything and X still looks the same

X, Discord and WhatsApp Web serve emojis as their own images, not through your system font, so those will never change. Test in Notepad or on YouTube instead.

Some apps changed and others did not

Windows keeps a prebuilt cache of your fonts and it needs clearing. Open PowerShell as administrator, run these, then restart.

Stop-Service FontCache -Force
Remove-Item "$env:WinDir\ServiceProfiles\LocalService\AppData\Local\FontCache\*" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "$env:WinDir\System32\FNTCACHE.DAT" -Force -ErrorAction SilentlyContinue
Start-Service FontCache

Will a Windows update revert it?

Large updates sometimes reset the setting. Just run command two again and your emojis come back.

Wrapping up

If the dated look of Windows emojis bothers you, this is the fastest way to change it without putting your system at risk. And if you want to customise Windows further, try Lively Wallpaper for animated desktop wallpapers.

Project and font : github.com/samuelngs/apple-emoji-ttf