C#, .NET, .Net Core
ASP.NET MVC, ASP.NET Web Forms, ASP.NET Core
HTML 5, CSS 3, Javascript, jQuery, Bootstrap
Entity Framework, NHibernate, Dapper
Sql Server, MySql, Oracle
Windows Server, Ubuntu, Debian, Pardus
Xamarin Forms, Android Studio
--- The future of the open web platform is looking very bright!
--- .NET is a free, cross-platform, open source developer platform for building any app.
Google Analytics İzleme
19 Eylül 2013
Türkçe karakter unicode değerleri
public string TurkceKarakterUnicodeCevrimi(string text)
{
text = text.Replace("İ", "\u0130");
text = text.Replace("ı", "\u0131");
text = text.Replace("Ş", "\u015e");
text = text.Replace("ş", "\u015f");
text = text.Replace("Ğ", "\u011e");
text = text.Replace("ğ", "\u011f");
text = text.Replace("Ö", "\u00d6");
text = text.Replace("ö", "\u00f6");
text = text.Replace("ç", "\u00e7");
text = text.Replace("Ç", "\u00c7");
text = text.Replace("ü", "\u00fc");
text = text.Replace("Ü", "\u00dc");
return text;
}
Kaydol:
Kayıt Yorumları (Atom)
Hiç yorum yok:
Yorum Gönder