That seems to be SERIOUSLY out of date and thus incorrect. I checked the data files
created by the editor for my own stuff,
<?xml version="1.0" encoding="UTF-8"?>
I then checked a few source files in savage/source and it's the same.
Then, for SnG's I took an existing item I had added as a TEST from my datafile, and changed the name to include some utf-8 characters. It shows up perfectly both in the application as well as in the print preview pdf.
Code:
<thing
id="miBALDuelB"
name=" ß ¼ ɚ ˥ ط Baldimar Duelist’s Blade"
compset="miMelee"
description="This ornately worked rapier is very popular with duelists. It grants +2 to Fighting, +1 damage, and increases the wielder’s Parry by +2."
summary="">
<fieldval field="miAttack" value="2"/>
<fieldval field="miDamage" value="1"/>
<fieldval field="wpParry" value="1"/>
<fieldval field="grCost" value="13150"/>
<fieldval field="gearWeight" value="3"/>
<usesource source="Fantasy"/>
<tag group="WeaponDie" tag="2"/>
<containerreq phase="Initialize" priority="2000"><![CDATA[
source.Fantasy]]></containerreq>
<child entity="fcMagItemP">
<bootstrap thing="wpRapier"></bootstrap>
<bootstrap thing="mieBlock2"></bootstrap>
</child>
</thing>
@TCArknight, NO, you do NOT want to utilize that crappy windows-1252 characterset. You will cause nothing but issues dealing with that.
So... the first thing I need to know, what editor are you using to modify your .user file? vanilla Notepad, Notepad++, TextPad, etc?
Second, what is the top line of your file as I noted above? What does the "encoding" attribute say?
For xml ,there are two critical parts of encoding, 1) the encoding declaration in the xml instrcutions(defaults to utf-8 if missing), and 2) the actual encoding on the FILE when you save. The latter is something most people miss unless they actually have good editor which makes it prominent as windows stupidly saves the files as windows-1252 in some very specific cases.
If using Notepad++, simply go to the Encoding menu and make sure it's set to utf-8 and save again AS WELL as change the xml prefix at the start of the file to utf-8 exactly like my example above. Also, when and HOW as the file created? ie, did you open a plain text file and start adding content? Did the editor create a stub file for you which you then edited? Did you copy from other sources and then throw away and rebuild? If this was copied from the editor made one, I assume it was done a long time ago or you might be using a very old baseline file(depending upon when they changed to support utf-8).
Let me know how that works.