Hello, I replaced the Win 11 emoji file with one which everyone on webgroups SAID was going to roll back to Win 10 emoji's. However, the file is corrupted or not displaying correctly. How can I go BACK to the original Win 11 file?f

Susan Brockman

🌐
Microsoft Support
support.microsoft.com › en-us › windows › windows-keyboard-tips-and-tricks-588e0b72-0fff-6d3f-aeee-6e5116097942
Windows keyboard tips and tricks - Microsoft Support
The emoji keyboard in Windows 11 lets you express yourself like never before. To use it: During text entry, press Windows key +. (period). The emoji keyboard appears. Select an emoji with the mouse or keep typing to search through the available emojis for one you like.
🌐
Emojipedia
emojipedia.org › microsoft
Microsoft Emoji List — Emojis for Windows 11, Windows 10 ...
Emojis from Microsoft are supported on PCs and tablets running Windows 11, Windows 10, as well as Xbox. They were also available on Windows phones prior to them being discontinued.
🌐
GitHub
github.com › jadenkiu › revert-windows-11-emojis
GitHub - jadenkiu/revert-windows-11-emojis: Step-by-step guide on how to revert Windows 11's fluent emojis back to the Windows 10 emojis. · GitHub
Step-by-step guide on how to revert Windows 11's fluent emojis back to the Windows 10 emojis. - jadenkiu/revert-windows-11-emojis
Starred by 17 users
Forked by 2 users
🌐
Reddit
reddit.com › r/windows11 › any way to revert windows 11 emoji change?
r/Windows11 on Reddit: any way to revert windows 11 emoji change?
December 18, 2021 -

i really dislike new emojis

https://i.imgur.com/vuh3DOK.png

this is a disaster imo. if you had never seen these emojis before and someone told you one was the original genuine emoji, and the other was the chinese knockoff - which would you think was the real deal here?

and this is just one emoji... they're all equally as terrible.... the fairy looks like a flamboyant gay workout instructor for some reason

https://i.imgur.com/fNJhbX2.png

is it really too much to ask for wizards to look like powerful wizards and not old grandmas?

🌐
Reddit
reddit.com › r/windows11 › any way to get the windows 11 emojis on windows 10?
r/Windows11 on Reddit: Any way to get the windows 11 emojis on windows 10?
November 29, 2025 -

Maybe like a downloadable font file or something? I looked for it on the internet with no luck

Solved! thanks to JenxxTR (BlockTurbulent8062)

You need to replace the $DownloadURL with a locally downloaded seguimj file if it cannot fetch it! It runs in powershell

<# ================================
WINDOWS 10 EMOJI UPGRADER TOOL
Retro Terminal Edition
By ChatGPT
================================ #>

# --- CONFIG ---
$BackupDir = "$env:ProgramData\EmojiFontBackup"
$FontsFolder = "$env:windir\Fonts"
$RegistryPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts"
$DownloadURL = "https://github.com/popemkt/segoe-ui-emoji/raw/main/seguiemj-15-Flat.ttf"
$DownloadedFont = "$env:TEMP\seguiemj-flat.ttf"

# --- RETRO UI HEADER ---
function Banner {
Clear-Host
Write-Host "==============================================" -ForegroundColor Green
Write-Host " WINDOWS 10 → WINDOWS 11 EMOJI INSTALLER TOOL " -ForegroundColor Cyan
Write-Host " Retro Terminal Edition" -ForegroundColor DarkGreen
Write-Host "==============================================" -ForegroundColor Green
}

# --- MENU ---
function Menu {
Banner
Write-Host "`n1) Install Windows 11 Emoji Font (Flat - Compatible)"
Write-Host "2) Restore Original Windows 10 Emoji Font"
Write-Host "3) Show Installed Emoji Fonts"
Write-Host "4) Exit"
Write-Host "`nChoose option: " -NoNewline
}

# --- LIST INSTALLED EMOJI FONTS ---
function List-EmojiFonts {
Write-Host "`n[ CURRENT EMOJI FONT FILES ]" -ForegroundColor Cyan
Get-ChildItem -Path $FontsFolder -Include "*emoji*.ttf","*emoji*.otf" -ErrorAction SilentlyContinue |
Select-Object Name, FullName |
ForEach-Object {
Write-Host (" - " + $_.Name)
}
Write-Host ""
}

# --- BACKUP ORIGINAL FONTS ---
function Backup-Fonts {
Write-Host "`n[BACKUP] Saving original fonts..." -ForegroundColor Yellow
if (!(Test-Path $BackupDir)) { New-Item -ItemType Directory -Path $BackupDir | Out-Null }

Get-ChildItem -Path $FontsFolder -Include "*emoji*.ttf","*emoji*.otf" -ErrorAction SilentlyContinue |
ForEach-Object {
Copy-Item $_.FullName -Destination $BackupDir -Force
Write-Host (" Backed up: " + $_.Name) -ForegroundColor DarkYellow
}
}

# --- DOWNLOAD FONT ---
function Download-NewFont {
Write-Host "`n[DOWNLOAD] Fetching Windows 11 Emoji Font..." -ForegroundColor Cyan
try {
Invoke-WebRequest -Uri $DownloadURL -OutFile $DownloadedFont -UseBasicParsing -ErrorAction Stop
Write-Host " Download successful!" -ForegroundColor Green
return $DownloadedFont
}
catch {
Write-Host " ERROR: Failed to download the font!" -ForegroundColor Red
return $null
}
}

# --- INSTALL NEW FONT ---
function Install-Font($fontPath) {
Write-Host "`n[INSTALL] Installing new emoji font..." -ForegroundColor Cyan

try {
Copy-Item -LiteralPath $fontPath -Destination $FontsFolder -Force
Write-Host " Copied new font into Windows Fonts folder." -ForegroundColor Green
}
catch {
Write-Host " ERROR copying font: $_" -ForegroundColor Red
return
}

try {
$fileName = [IO.Path]::GetFileName($fontPath)
New-ItemProperty -Path $RegistryPath `
-Name "Segoe UI Emoji (TrueType)" `
-Value $fileName -PropertyType String -Force | Out-Null

Write-Host " Registered font in Windows registry." -ForegroundColor Green
}
catch {
Write-Host " ERROR registering font: $_" -ForegroundColor Red
}

Write-Host "`n Installation complete. Reboot recommended." -ForegroundColor Yellow
}

# --- RESTORE BACKUP ---
function Restore-Backup {
Write-Host "`n[RESTORE] Restoring backup..." -ForegroundColor Yellow

if (!(Test-Path $BackupDir)) {
Write-Host " No backup found!" -ForegroundColor Red
return
}

Get-ChildItem -Path $BackupDir -Include "*.ttf","*.otf" | ForEach-Object {
Copy-Item $_.FullName -Destination $FontsFolder -Force
Write-Host (" Restored: " + $_.Name) -ForegroundColor DarkYellow
}

Write-Host "`n Restore complete. Reboot recommended." -ForegroundColor Yellow
}

# --- MAIN LOOP ---
do {
Menu
$choice = Read-Host

switch ($choice) {

"1" {
Banner
Write-Host "Installing Windows 11 Emoji Font..." -ForegroundColor Cyan
List-EmojiFonts
Backup-Fonts
$font = Download-NewFont
if ($font) { Install-Font $font }
Pause
}

"2" {
Banner
List-EmojiFonts
Restore-Backup
Pause
}

"3" {
Banner
List-EmojiFonts
Pause
}

"4" { exit }

default {
Write-Host "`nInvalid option!" -ForegroundColor Red
Pause
}
}

} while ($true)
🌐
Wondershare Filmora
filmora.wondershare.com › home › resource center › entertainment video › how to use emojis on windows
How to Use Emojis on Windows 10 and Windows 11? - Filmora
September 22, 2025 - You can conduct a quick online search to get the entire list of keyboard shortcuts and the emojis that they will create. For your convenience, a link from the Microsoft official website is given below: Link: https://support.microsoft.com/en-us/office/emoticon-keyboard-shortcuts-5dbe678c-cef7-4a63-aa62-f07c2f38b267 · If you have Microsoft Surface or any other device that has Windows 10 or Windows 11 installed on it, and can accept inputs via touch keyboard, you can enable the feature in the operating system, and then use the touch keyboard to add emojis to your conversion or content.
Find elsewhere
🌐
Medium
medium.com › microsoft-design › bringing-new-emoji-to-windows-11-02a4a488c38b
Bringing new emoji to Windows 11. A look at how we designed a new… | by Microsoft Design | Microsoft Design | Medium
February 23, 2024 - If an application supports COLRv1, the font displays COLRv1; if not, then the application uses one of the other two versions. A hybrid font is a revolving door of adaptability and different styles. “It’s pretty groundbreaking. Nobody in the world is currently shipping a font that does this,” said Senior Program Manager Judy Safran-Aasen, who oversees the font and emoji work as part of the Windows operating system.
🌐
Reddit
reddit.com › r/windows11 › how to change back to normal emojis on windows 11
r/Windows11 on Reddit: How to change back to normal emojis on Windows 11
July 23, 2024 -

I just bought a PC and installed windows 11 on it (I've always used windows 10 on my laptop) and I was greeted with some atrocious looking emojis

I hate everything about these and how they look, please tell me there is a way to change the set of emojis you have to something else

EDIT: I followed this forum post and it worked for me https://www.techpowerup.com/forums/threads/change-windows-11-emoji-set.291051/

🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 5817937 › how-to-use-newer-emojis-in-windows-10
how to use newer emojis in windows 10 - Microsoft Q&A
March 11, 2026 - Windows 10 includes a fixed emoji set, while newer emojis are introduced with newer Windows versions. Because of this design, emojis added in Windows 11 are not included in the Windows 10 emoji panel. On Windows 10, you can use supported emojis ...
🌐
The Windows Club
thewindowsclub.com › the windows club › how to use emojis in windows 11 or windows 10
How to use Emojis in Windows 11 or Windows 10
To use these emojis, open any text command, like Notepad, Email, Blogpost, a Word Document, etc, and press Win+Period keys on your keyboard. The new Emoji Panel in Windows 11 looks modern and complements the latest operating system’s design.
Published   March 3, 2026
🌐
Office Watch
office-watch.com › home › get the most from windows 11 emoji panel
Emoji Panel Windows 11: Everything You Need to Know 🤔 - Office Watch
January 5, 2024 - We’re talking about the Emoji ... Windows 11 when you press Win + . (Windows key plus period/fullstop) or Win + ; (Windows key plus semi-colon). If you have Windows 10, there’s a different Emoji Panel, see All about the Windows 10 Emoji Panel · The Emoji Panel works with any Windows app that has a text entry including any version of Microsoft Office. Also messaging apps like WhatsApp or Signal and text entry boxes on web ...
🌐
Alludolearning
app.alludolearning.com › m › activities › 263038-windows-10-11-emoji-keyboard
Windows 10/11 Emoji Keyboard · Alludo
Engage students with the hidden Windows emoji keyboard. Unlock a fun way to connect through 1000+ symbols and icons. Quickly access it in MS Teams, Outlook etc. Video tutorial shows you how - add pizzazz to lessons and lighten dry course material.
🌐
SoftwareKeep
softwarekeep.com › blogs › tips-and-tricks › how-to-use-emojis-on-windows-11
How To Use Emojis on Windows 11 | SoftwareKeep
October 11, 2024 - The functionality of the Windows 11 emoji keyboard is also far superior to the Windows 10 version. For instance, rather than having to go through multiple menus, you can quickly search for emojis by simply typing a keyword or phrase into the search bar.
🌐
Windows Latest
windowslatest.com › home › windows 11
Microsoft has no plans to bring Windows 11 emojis to Windows 10
November 26, 2021 - Unfortunately, it looks like Microsoft has no plans to bring these modern emojis to Windows 11. Windows 11’s emojis will remain exclusive to the new operating system, and Windows 10 users will not be getting any new emojis, at least for now.
🌐
Reddit
reddit.com › r/windowshelp › windows 10 emojis on windows 11
r/WindowsHelp on Reddit: Windows 10 emojis on Windows 11
August 11, 2023 - Emoji keyboard

I didn't upgrade to Windows 11 from a Windows 10 computer - this was a new PC with Windows 11. When copying fonts over from my old, Windows 10 PC, I simply selected all of the fonts, got them onto my new device and installed them. However, whenever I type emojis it displays the old emojis as there are 2 versions of the Segoe UI Emoji typeface installed. My Windows isn't activated, and I can't uninstall the second font containing the old emojis from my device without using the settings app... which I need to activate Windows for. Is there any way I can delete this font without activating or is the only solution to buy a license?