I'm using the ShellTile.Create method to create a secondary tile. Users of the app I've developed have noticed that if the entity they are pinning has a name that starts with "@" (which is then used for the title of the tile), then the title that is displayed by the phone is "@\Applications\" ....
It looks to me as though the phone treats an "@" at the start of the name as special somehow, and replaces it with a path ...
Here I'm setting the ShellTileData.Title to "@Test". This is what gets pinned:

I've tried UrlEncoding the title - no luck.
Has anyone come across this before? Is it a known issue?
Damian
I've accepted Colin's answer below. This is the code I'm now using based on his suggestion:
...
if(initialData.Title.StartsWith("@")) {
initialData.Title = '\uff20' + initialData.Title.Substring(1);
}
ShellTile.Create(uri, initialData);