I am trying to implement chat functionality in WP8.0. Whenever I receive a smiley from the server. It does not display correctly in the UI. This is the code
`
public string Comment
{
get
{ return _comment; }
set
{
if (value != null)
{
// value I am trying to convert is "Testing smileys \\uD83D\\uDE03\\uDE03"
string convertedCharacter = System.Text.RegularExpressions.Regex.Unescape(value);
_comment = convertedCharacter;
}
}
}
`