.Net library for converting between Unicode
This library is .Net adaptation of mmfont by @setkyar who packaged @saturngod's Rabbit into php.
using mmfont.Net;
public partial class Main : Form
{
private void btnConvert_Click(object sender, EventArgs e)
{
txtUni.Text = Converter.ZG2Uni(txtZawgyi.Text);
}
}
This is not a fully functional library. Instead, it's just a starter with lots of rooms for improvement.