<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#CCFFFF" text="#000066">
    Hello,<br>
    <br>
    I try to build a Script to clear my file in Scribus 15 textes in a
    180 page book.<br>
    <br>
    When I look with Notepad++ in my sla file, how could I be sure that
    the CH=" "/> is a Space Fine.<br>
    I founded with Notepad++ ASCII to Hex :<br>
    E2 80 89, that is the Space fine code in UTF8 -
    <a class="moz-txt-link-freetext" href="http://unicode-table.com/fr/2009/">http://unicode-table.com/fr/2009/</a><br>
    <br>
    <blockquote type="cite">            <ITEXT FEATURES="inherit
      superscript" CH=" "/><br>
                  <ITEXT FEATURES="inherit superscript"
      FCOLOR="Black" CH="5"/></blockquote>
    <br>
    The 5 is a note call, I need to Fine space it all my Note calls,
    some time I find a E20 in place.<br>
    I would like to script it in a cleaner script for many small
    details. I try to use a existing script and I modify it very slowly.
    <br>
    In my Notepad++ for example<br>
    <blockquote type="cite">    # double colon to colon<br>
          (r'\:\:+',u'\u003a'),</blockquote>
    I see that I can mix : and u003a. <br>
    Is there a reason why I look for a : and I replace it by an Unicode
    ?<br>
    <br>
    Is it better to write it in the script in Hex UTF8 or decimal
    UTF16BE. <br>
    <br>
    When I introduce one Fine space under Windows I hit Alt+8201 or I
    use the (blind) Scribus command. <br>
    <br>
    Codage         hex                 dec (bytes)         dec     <br>
    UTF-8             E2 80 89         <br>
    UTF-16BE         20 09             32 9                 8201    <br>
    UTF-16LE         09 20             9 32                 2336    <br>
    UTF-32BE     00 00 20 09     0 0 32 9             8201    <br>
    UTF-32LE     09 20 00 00     9 32 0 0         153092096     <br>
    <br>
    Thank's a lot from a beginner,<br>
    Richard<br>
    <br>
    <br>
  </body>
</html>