I have characters which are outside 7bit ASCII in my username "Jakub Narębski". Characters outside US-ASCII are dropped from full profile URL: http://meta.stackoverflow.com/users/130454/jakub-narbski (see that it is 'narbski', not 'narebski' or 'narębski').
I'm not quite sure if it is a bug or not. I think that the last part of URL is purely informational; http://meta.stackoverflow.com/users/130454 works as well, I suspect to allow to change one's name field.
Added 30-07-2009:
This feature request, in the form of stripping diacritical marks, got implemented (status-completed). Wouldn't it be a good idea to separate this Unicode transliteration code and put it as ASP.NET snippet or mini-library somewhere?
See also: This Is America, Take Your Unicode Somewhere Else blog post by Ted Dziuba, which mentions Text::Unidecode Perl module (which does US-ASCII transliterations of Unicode text), and mentions in passing Stack Overflow.
Added 30-08-2009
Perl6 has :ignoreaccent modifier, and there is also Text::Unaccent Perl module (which uses unac C library).