I’m creating a database for a global application that stores data in multiple written languages. This means I am storing a lot of double-byte Unicode strings for various fields. But when storing E-mail addresses, does the internet only recognize single-byte ASCII characters in the address? If so, I could cut the size of this field in half, which would be a big performance boost in this case.
I’m creating a database for a global application that stores data in multiple written
Share
RFC 3490 proposes the use of unicode characters in domain names (which obviously make up the second part of an email address). So it would be wise to support this.