Hi guys

I'll explain the scenario. I have a list containing character list and it's corresponding unicode characters(copied from CharMap and pasted in VB editor).
For example:
Code:
Text = Unicode --> Unicode character
---------------------------------------

K = U+004A --> J
i = U+00A2 --> ¢
Kaa = U+00A1 --> J¡
il = U+0076 --> v
ppa = U+00B8 --> ¸

...etc
So, what the user types in the first RichTextbox should be parsed and mapped using the above table, and then displayed on the second RichTextBox.

RichTextBox1 (user types in)
Code:
Kaappil
RichTextBox2 (preview with no editing here)
Code:
J¡¸¢v
Please give me some suggestions/comments on how to accomplish this.

I just want to know an efficient for this.

Thanks