Other issues or features related to Microsoft Edge on Windows 10
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
_Hi Microsoft Community,_
_I am testing a web character tool built for quick Spanish character insertion (e.g., https://enyecopypaste.com/_
_I am encountering a slight rendering/encoding glitch when copying special characters like Ñ or ñ across different Windows browsers (Edge vs Chrome)._
_1. What is the recommended UTF-8 meta setup or IIS/server header configuration to ensure special characters paste seamlessly without breaking formatting?_
2. Are there specific Windows keyboard/clipboard API standards I should follow for web-based copy utility tools?
_Any insights or best practices from web developers here would be greatly appreciated!_
Other issues or features related to Microsoft Edge on Windows 10
Welcome Sartaj Jon,
For Spanish characters such as Ñ and ñ, the most reliable approach is to ensure that UTF-8 is used consistently throughout the entire data flow (HTML page, server response, clipboard handling, and storage). UTF-8 is recommended as the preferred encoding for web applications and international text support.
Use UTF-8 code pages in Windows apps - Windows apps | Microsoft Learn,
How to: Select an Encoding for ASP.NET Web Page Globalization | Microsoft Learn
<meta charset="utf-8"> Content-Type: text/html; charset=utf-8 <globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
fileEncoding="utf-8" />
For web-based copy tools, Microsoft Edge and other modern browsers support the Clipboard API. Microsoft and browser standards recommend using this modern API instead of older copy methods: await navigator.clipboard.writeText("Ñ");
The Clipboard API works with Unicode text and is generally the preferred approach for multilingual content.
If the issue occurs only after pasting into another application:
If the answer is helpful, please click "Yes". If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.