up vote 7 down vote favorite
3
share [g+] share [fb]

I am interacting with a web server using a desktop client program in C# and .Net 3.5. I am using Fiddler to see what traffic the web browser sends, and emulate that. Sadly this server is old, and is a bit confused about the notions of charsets and utf-8. Mostly it uses Latin-1.

When I enter data into the Web browser containing "special" chars, like "Ω π ℵ ∞ ♣ ♥ ♈ ♉ ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ ♒ ♓" fiddler show me that they are being transmitted as follows from browser to server: "♈ ♉ ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ ♒ ♓ "

But for my client, HttpUtility.HtmlEncode does not convert these characters, it leaves them as is. What do I need to call to convert "♈" to ♈ and so on?

link|improve this question

Strangely, .Net 2.0's HttpUtility will properly encode characters between 0xA0 and 0xFF, but not those above! (Check it out using Reflector.) – Oliver Bock Jun 10 '11 at 7:33
Strange. HttpUtility.HtmlEncode (all overloads) call HttpEncoder.Current.HtmlEncode, so it seems that the encoder used depends on the value of HttpEncoder.Current, concerning which: "If a derived HttpEncoder type is specified in the configuration file, the Current property returns a reference to the custom type. However, if no custom encoder is used, the property returns a reference to the default ASP.NET HttpEncoder instance. The Current property is not thread-safe. Set this property only in the application's Application_Start method, because Application_Start runs on a single thread." – Triynko Aug 23 '11 at 20:38
feedback

6 Answers

up vote 3 down vote accepted

It seems horribly inefficient, but the only way I can think to do that is to look through each character:

public static string MyHtmlEncode(string value)
{
   // call the normal HtmlEncode first
   char[] chars = HttpUtility.HtmlEncode(value).ToCharArray();
   StringBuilder encodedValue = new StringBuilder();
   foreach(char c in chars)
   {
      if ((int)c > 127) // above normal ASCII
         encodedValue.Append("&#" + (int)c + ";");
      else
         encodedValue.Append(c);
   }
   return encodedValue.ToString();
}
link|improve this answer
This works. I haven't tested the others yet. – Anthony Feb 13 '09 at 21:32
feedback

The return value type of HtmlEncode is a string, which is of Unicode and hence has not need to encode these characters.

If the encoding of your output stream is not compatible with these characters then use HtmlEncode like this:-

 HttpUtility.HtmlEncode(outgoingString, Response.Output);

HtmlEncode with then escape the characters appropriately.

link|improve this answer
Interesting, but how would you tie that up with Scott H's posting technique from hanselman.com/blog/… – Anthony Feb 13 '09 at 21:31
@Anthony: They don't tie up at all (did you post the right link?). HtmlEncode has nothing to do with form POST emulations, or were you thinking of URLEncode stuff, thats a different thing. – AnthonyWJones Feb 14 '09 at 16:58
@ AnthonyWJones yes, it's the right link for the post technique. I have to encode this way before I post the form. – Anthony Feb 20 '09 at 20:55
@Anthony: ok. So the answer to your first question is as stated, They don't tie up. The encoding you need to post with is URL Encoding which is unrelated to HTML encoding. – AnthonyWJones Feb 20 '09 at 22:28
Thanks, but I'm pretty sure that for this particular server, I need HTML encoding before posting. – Anthony Feb 21 '09 at 7:08
show 2 more comments
feedback

Rich Strahl just posted a blog post, Html and Uri String Encoding without System.Web, where he has some custom code that encodes the upper range of characters, too.

/// <summary>
/// HTML-encodes a string and returns the encoded string.
/// </summary>
/// <param name="text">The text string to encode. </param>
/// <returns>The HTML-encoded text.</returns>
public static string HtmlEncode(string text)
{
    if (text == null)
        return null;

    StringBuilder sb = new StringBuilder(text.Length);

    int len = text.Length;
    for (int i = 0; i < len; i++)
    {
        switch (text[i])
        {

            case '<':
                sb.Append("&lt;");
                break;
            case '>':
                sb.Append("&gt;");
                break;
            case '"':
                sb.Append("&quot;");
                break;
            case '&':
                sb.Append("&amp;");
                break;
            default:
                if (text[i] > 159)
                {
                    // decimal numeric entity
                    sb.Append("&#");
                    sb.Append(((int)text[i]).ToString(CultureInfo.InvariantCulture));
                    sb.Append(";");
                }
                else
                    sb.Append(text[i]);
                break;
        }
    }
    return sb.ToString();
}
link|improve this answer
What reasons are there to HTML encode without System.Web? – AnthonyWJones Feb 13 '09 at 21:10
2  
Why 159 for the cut-off? – Anthony Feb 13 '09 at 21:25
feedback

The AntiXSS library from Microsoft correctly encodes these characters.

AntiXSS on Codeplex

Nuget package (best way to add as a reference)

link|improve this answer
feedback

It seems like HtmlEncode is just for encoding strings that are put into HTML documents, where only / < > & etc. cause problems. For URL's, just replace HtmlEncode with UrlEncode.

link|improve this answer
feedback

@bdukes response above will do the job, but we can make it much faster if we assume that most characters will not be in this range. Note the quoted 'Ā' (unicode 0x0100)

/// <summary>.Net 2.0's HttpUtility.HtmlEncode will not properly encode
/// Unicode characters above 0xFF.  This may be fixed in newer 
/// versions.</summary>
public static string HtmlEncode(string s)
{
    // Let .Net 2.0 get right what it gets right.
    s = HttpUtility.HtmlEncode(s);

    // Search for first non-ASCII.  Hopefully none and we can just 
    // return s.
    int num = IndexOfHighChar(s, 0);
    if (num == -1)
        return s;
    int old_num = 0;
    StringBuilder sb = new StringBuilder();
    do {
        sb.Append(s, old_num, num - old_num);
        sb.Append("&#");
        sb.Append(((int)s[num]).ToString(NumberFormatInfo.InvariantInfo));
        sb.Append(';');
        old_num = num + 1;
        num = IndexOfHighChar(s, old_num);
    } while (num != -1);
    sb.Append(s, old_num, s.Length - old_num);
    return sb.ToString();
}

static unsafe int IndexOfHighChar(string s, int start)
{
    int num = s.Length - start;
    fixed (char* str = s) {
        char* chPtr = str + start;
        while (num > 0) {
            char ch = chPtr[0];
            if (ch >= 'Ā')
                return s.Length - num;
            chPtr++;
            num--;
        }
    }
    return -1;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.