<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[&quot;Special characters&quot; in Search Results window (encoding issues?)]]></title><description><![CDATA[<p dir="auto">Maybe this opens a can of worms, but I must ask.</p>
<p dir="auto">The lead-up:</p>
<ul>
<li>I recorded a macro for a Find All in Current Document search.</li>
<li>I edited <code>shortcuts.xml</code> to get to the macro’s text.</li>
<li>I changed some text in the macro to use a “special” UTF-8 character in the search term.</li>
<li>The search works; that isn’t the issue.</li>
</ul>
<p dir="auto">The issue is that when I run the macro, what appears in the Search Results window is strange for this character:</p>
<p dir="auto"><img src="/assets/uploads/files/1603304486161-2dda3ad7-5528-41e5-9979-9765b59b297b-image.png" alt="2dda3ad7-5528-41e5-9979-9765b59b297b-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">My “special character” is the a-with-the-hat then the black-boxed “APC”, in case that is not obvious. :-)</p>
<p dir="auto">BTW, the character displays nicely if used in an editor window.</p>
<p dir="auto">So, in thinking about the “why” of this happening, I start to wonder:</p>
<ul>
<li>
<p dir="auto">Is the search results window set up correctly for UTF-8?  Or, alternatively for users of other encodings, is the search results window set up for the same encoding as the editor window that a search is initiated from?</p>
</li>
<li>
<p dir="auto">What if a user has several files open in tabs that are various different encoding types, and the user runs a Find All in Opened Documents search?  All of the results get put into the same result window, so how are the different encodings accounted for in the same window simultaneously?</p>
</li>
</ul>
<p dir="auto">Any and all input is appreciated.<br />
We seem to be talking about “encoding” a lot lately.</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/20194/special-characters-in-search-results-window-encoding-issues</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Apr 2026 08:50:19 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/20194.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 21 Oct 2020 18:43:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Tue, 10 Nov 2020 15:27:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3841">@PeterJones</a> said in <a href="/post/59607">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">If you added</p>
</blockquote>
<p dir="auto">First, I’m a bit surprised that after adding that line manually, that Notepad++ allows it to remain (after recording a new macro, forcing N++ to rewrite <code>shortcuts.xml</code>).</p>
<p dir="auto">Second, it was a good idea, but sadly, after trying it, I get the same result as earlier, specifically, “garbage” characters in the <em>Find result</em> window text.</p>
<p dir="auto">Third, thanks for the interest, <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3841">@PeterJones</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/59608</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59608</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 10 Nov 2020 15:27:05 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Tue, 10 Nov 2020 15:17:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a> said in <a href="/post/59604">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">Always use the “html syntax” seems the “safest”.<br />
Ideas? Or is the topic too “meh” for anyone to care? :-)</p>
</blockquote>
<p dir="auto">I don’t know enough about XML to know the default encoding, but my guess is Windows-1251.<br />
If you added</p>
<pre><code>&lt;?xml version="1.0" encoding="UTF-8" ?&gt;
</code></pre>
<p dir="auto">at the beginning of the <code>shortcuts.xml</code> (and reloaded Notepad++), does that allow you to hand-insert the <a href="https://graphemica.com/%E2%9F%AF" rel="nofollow ugc">https://graphemica.com/⟯</a> or other special character into the macro XML directly?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59607</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59607</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 10 Nov 2020 15:17:07 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Tue, 10 Nov 2020 14:39:44 GMT]]></title><description><![CDATA[<p dir="auto">More thoughts:</p>
<p dir="auto">From my immediately preceding post, it follows that anytime a “special” character is used in a N++ configuration xml file, the “html syntax”, example <code>&amp;#27EF</code> should be used, rather than inserting the character “directly”, for example via a paste.</p>
<p dir="auto">However, I notice in <code>english_customizable.xml</code> the following, which does not follow this idea:</p>
<pre><code class="language-z">&lt;Item id="1721" name="▲"/&gt;
&lt;Item id="1723" name="▼ Find Next"/&gt;
</code></pre>
<p dir="auto">But yet these items display correctly…<br />
Okay, different usage from the above; these appear on buttons in the UI, the earlier discussion is some text in the <em>Find result</em> window…</p>
<p dir="auto">But in general, I would be interest to know why these <em>don’t</em> require any special “treatment” in the xml.<br />
Or what is the “rule”?<br />
Always use the “html syntax” seems the “safest”.</p>
<p dir="auto">Ideas? Or is the topic too “meh” for anyone to care? :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59604</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59604</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 10 Nov 2020 14:39:44 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Tue, 10 Nov 2020 13:41:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a> said in <a href="/post/59052">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">When I put it into shortcuts.xml I just pasted it as a single character, but now I notice that it looks like this if I open the xml:<br />
<code>&amp;#x00E2;&amp;#x009F;&amp;#x00AF;</code></p>
</blockquote>
<p dir="auto">So just providing some more data on this, after I experimented with it a bit more:</p>
<p dir="auto">I see that if I record a macro using the multibyte unicode <a href="https://graphemica.com/%E2%9F%AF" rel="nofollow ugc">character</a> (discussed much further up in the thread), instead of “hand editing” shortcuts.xml after-the-fact, when I run the macro I DO see the correct character appearing in the <em>Find result</em> window:</p>
<p dir="auto"><img src="/assets/uploads/files/1605015452280-fb3060bd-84e4-42c4-bff1-a4b1f40ee59d-image.png" alt="fb3060bd-84e4-42c4-bff1-a4b1f40ee59d-image.png" class=" img-fluid img-markdown" /><br />
AND…</p>
<p dir="auto">if I later look at the saved xml, I see this for that character in the macro:</p>
<p dir="auto"><code>&amp;#x27EF;</code></p>
<p dir="auto">Which does indeed make sense.</p>
<p dir="auto">So perhaps the error was mine and it comes down to directly inserting the unicode character into the XML instead of inserting its <code>&amp;#x....</code> code.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59603</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59603</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 10 Nov 2020 13:41:25 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Thu, 05 Nov 2020 12:23:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14479">@Ekopalypse</a></p>
<p dir="auto">In hindsight, I probably shouldn’t have mentioned <code>SCI_ENCODEDFROMUTF8</code> as I did a search of the Notepad++ source code, and it isn’t used there.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59447</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59447</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 05 Nov 2020 12:23:02 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Thu, 05 Nov 2020 11:11:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a></p>
<p dir="auto">since the Windows API uses utf16 for internal storage of strings, this does not sound efficient.<br />
I wonder why the scintilla devs thought that this might be a good idea.<br />
Hmm … most likely because the library is used on different platforms,<br />
but then why not have a compile time variable to convert it to utf16 on Windows and utf8 on Linux … ??</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59441</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59441</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Thu, 05 Nov 2020 11:11:50 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Wed, 04 Nov 2020 13:34:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14479">@Ekopalypse</a> said in <a href="/post/59050">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">What I hope npp does is</p>
<ul>
<li>read the content from the document and convert it to utf16</li>
<li>search for the string in utf16 as well</li>
<li>display the search result in whatever encoding is needs to do</li>
</ul>
</blockquote>
<p dir="auto">When I noticed the following in the Scintilla documentation, it reminded me of Eko’s points above:</p>
<p dir="auto"><strong>SCI_ENCODEDFROMUTF8</strong>(const char *utf8, char *encoded) → position<br />
SCI_ENCODEDFROMUTF8 converts a UTF-8 string into the document’s encoding which is <em><strong>useful for taking the results of a find dialog, for example, and receiving a string of bytes that can be searched for in the document.</strong></em></p>
<p dir="auto">I’m not sure what I’m saying by pointing this out; perhaps just noticing a somewhat common theme? :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59395</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59395</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Wed, 04 Nov 2020 13:34:00 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Mon, 26 Oct 2020 12:11:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a> said in <a href="/post/59083">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">You mean this actual character?:</p>
</blockquote>
<p dir="auto">I guess so, even my browser refuses to display it</p>
<p dir="auto"><img src="/assets/uploads/files/1603713968412-ed4eb222-dd59-4c3f-8a40-c5eeef40f798-image.png" alt="ed4eb222-dd59-4c3f-8a40-c5eeef40f798-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">But more I think about it, the less I’m convinced that it is a font or technology issue as you do get a representation - just a different one.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59084</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59084</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Mon, 26 Oct 2020 12:11:05 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Mon, 26 Oct 2020 12:04:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14479">@Ekopalypse</a> said in <a href="/post/59078">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">The other usual suspects would be the font and technology (GDI/DirectX).<br />
By the way, which font do you use?</p>
</blockquote>
<p dir="auto">I have direct-write enabled.<br />
I play around with different fonts (can’t seem to find the best–for me); “Consolas” is the one currently in favor for me.</p>
<blockquote>
<p dir="auto">None of my installed fonts show this symbol in the editor.</p>
</blockquote>
<p dir="auto">You mean this actual character?:</p>
<h1>⟯</h1>
]]></description><link>https://community.notepad-plus-plus.org/post/59083</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59083</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 26 Oct 2020 12:04:00 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Mon, 26 Oct 2020 08:23:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a></p>
<p dir="auto">The other usual suspects would be the font and technology (GDI/DirectX).<br />
By the way, which font do you use?<br />
None of my installed fonts show this symbol in the editor.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59078</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59078</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Mon, 26 Oct 2020 08:23:02 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Mon, 26 Oct 2020 00:48:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14479">@Ekopalypse</a> said in <a href="/post/59048">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">I know you have access to the find result window, did you try to read the current encoding?</p>
</blockquote>
<p dir="auto">My investigation down this path:</p>
<pre><code class="language-z"># Get the code page used to interpret the bytes of the document as characters.
get int GetCodePage=2137(,)
</code></pre>
<p dir="auto">Calling that function on the <em>Find result</em> window results in a <code>65001</code> being returned.</p>
<p dir="auto">Looking in <code>scintilla.h</code> I see:</p>
<pre><code class="language-z">#define SC_CP_UTF8 65001
</code></pre>
<p dir="auto">So it does appear that the encoding for the <em>Find result</em> window is UTF-8.</p>
<p dir="auto">Which makes me wonder even more why my UTF-8 character doesn’t show up correctly there.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59074</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59074</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 26 Oct 2020 00:48:03 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Sun, 25 Oct 2020 14:51:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/195">@guy038</a> said in <a href="/post/59057">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">Many thanks for pointing us to  <a href="https://graphemica.com" rel="nofollow ugc">https://graphemica.com</a>   ! Really, this site gives a ton of information on each character</p>
</blockquote>
<p dir="auto">It was a site previously unknown to me.<br />
Glad you enjoyed it.<br />
BTW, I found it because I googled <code>E29FAF</code> after finding that Notepad++ had converted my entry of the UTF-8 character to these codes – my quickest way to explain the “more info” I wanted to provide in my previous post.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59058</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59058</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sun, 25 Oct 2020 14:51:49 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Sat, 19 Nov 2022 11:16:33 GMT]]></title><description><![CDATA[<p dir="auto">Hi, <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a>,</p>
<p dir="auto">Many <strong>thanks</strong> for pointing us to  <a href="https://graphemica.com" rel="nofollow ugc">https://graphemica.com</a>   ! Really, this site gives a <strong>ton</strong> of information on <strong>each</strong> character ;-))</p>
<p dir="auto">Just for <strong>information</strong> :</p>
<pre><code class="language-z">https://graphemica.com                     =&gt;  SEARCH of a SPECIFIC Unicode character

https://graphemica.com/characters          =&gt;  List of Unicode CHARACTERS by NAME

https://graphemica.com/categories          =&gt;  List of Unicode GENERAL_CATOGORIES

https://graphemica.com/blocks              =&gt;  List of Unicode BLOCKS

https://graphemica.com/scripts             =&gt;  List of Unicode SCRIPTS

https://graphemica.com/unicode/characters  =&gt;  List of Unicode CHARACTERS per PAGE of 256 chars


INPUT Examples :

Char       =&gt;  Character ITSELF


&amp;10180
           =&gt;  CHOICE between character U+10180 and character U+27C4  =  U + Hex(10180)
#10180


10180
           =&gt;  Character U+10180 ( GREEK FIVE OBOLS SIGN )
&amp;#x10180


&amp;#10180    =&gt;  Character U+27C4 = U + Hex(10180)  ( OPEN SUPERSET )
</code></pre>
<p dir="auto">Cheers,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59057</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59057</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sat, 19 Nov 2022 11:16:33 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Sun, 25 Oct 2020 12:01:33 GMT]]></title><description><![CDATA[<p dir="auto">I realized I could have added more info to my original post:</p>
<p dir="auto">The character I manually added to my macro was this one:<br />
⟯<br />
which looks like a right-parens but is actually this:<br />
<a href="https://graphemica.com/%E2%9F%AF" rel="nofollow ugc">https://graphemica.com/⟯</a></p>
<p dir="auto">When I put it into <code>shortcuts.xml</code> I just pasted it as a single character, but now I notice that it looks like this if I open the xml:</p>
<p dir="auto"><code>&amp;#x00E2;&amp;#x009F;&amp;#x00AF;</code></p>
<p dir="auto">This all makes sense as the xml is UTF-8; I just wanted to add the info to the thread.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59052</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59052</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sun, 25 Oct 2020 12:01:33 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Sun, 25 Oct 2020 11:53:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a></p>
<blockquote>
<p dir="auto">ctypes</p>
</blockquote>
<p dir="auto">:-D - with a “speakable” language like python - no problema</p>
<p dir="auto">What I hope npp does is</p>
<ul>
<li>read the content from the document and convert it to utf16</li>
<li>search for the string in utf16 as well</li>
<li>display the search result in whatever encoding is needs to do</li>
</ul>
<p dir="auto">but it looks like this isn’t the case.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59050</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59050</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Sun, 25 Oct 2020 11:53:07 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Sun, 25 Oct 2020 11:48:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/14479">@Ekopalypse</a> said in <a href="/post/59048">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<blockquote>
<p dir="auto">I know you have access to the find result window, did you try to read the current encoding?</p>
</blockquote>
<p dir="auto">I did not, but that is a good suggestion.<br />
I will do that and report back.</p>
<blockquote>
<p dir="auto">your knowledge of</p>
<p dir="auto">C++ is better than mine</p>
</blockquote>
<p dir="auto">Perhaps only slightly?<br />
Wait, wait, Mr. Ctypes!</p>
<p dir="auto">Truly, though, I thought I was missing something really obvious – how could no one have thought about N++ doing a find-in-files for perhaps many different encodings of the candidate files, and writing content output to a single window that, being a Scintilla buffer window, must have a single encoding specified for it?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59049</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59049</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sun, 25 Oct 2020 11:48:26 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Sun, 25 Oct 2020 11:43:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@Alan-Kilborn</a> said in <a href="/post/59043">"Special characters" in Search Results window (encoding issues?)</a>:</p>
<p dir="auto">I know you have access to the find result window, did you try to read the current encoding?<br />
As for the many documents with multiple encodings - your knowledge of<br />
C++ is better than mine - if you haven’t figured it out, I won’t figure it out :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59048</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59048</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Sun, 25 Oct 2020 11:43:55 GMT</pubDate></item><item><title><![CDATA[Reply to &quot;Special characters&quot; in Search Results window (encoding issues?) on Sun, 25 Oct 2020 11:20:12 GMT]]></title><description><![CDATA[<p dir="auto">The usual group of very-opinionated posters have remained silent on this. :-)<br />
Maybe it is a dumb/bad question?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/59043</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/59043</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sun, 25 Oct 2020 11:20:12 GMT</pubDate></item></channel></rss>