Tagged Questions

Obsolete 7-bit Unicode character encoding

learn more… | top users | synonyms

5
votes
2answers
659 views

Adding “charset” to all ASP.NET MVC HTTP responses

Is there an easy way to specify all "normal" views is an ASP.NET MVC app are to have charset=utf-8 appended to the Content-Type? View() lacks an override that allows you to specify the Content-Type, ...
3
votes
1answer
194 views

Loading a Java Charset manually

I'm doing some work using the JavaMail API, and I've run across encodings which Java doesn't support natively (by design), such as UTF7/unicode-1-1-utf-7. For that encoding in particular I found the ...
3
votes
1answer
1k views

IMAP folder path encoding (IMAP UTF-7) for .NET?

The IMAP specification (RFC 2060, 5.1.3. Mailbox International Naming Convention) describes how to handle non-ASCII characters in folder names. It defines a modified UTF-7 encoding: By convention, ...
1
vote
2answers
63 views

Utf7Encoding Text truncation

I was having an issue with the Utf7Encoding class truncating the '+4' sequence. I would be very interested to know why this was happening. I tried Utf8Encoding for getting string from the byte[] ...
1
vote
1answer
411 views

Intelligent UTF-8 to UTF-7 in .NET

If I have a string of UTF-8 characters and they need to be output to an older system as UTF-7 I have two questions pertaining to this. How can I convert a string s which has UTF-8 characters to the ...