translate to braille

transformers

New member
Joined
Jun 28, 2011
Messages
4
Programming Experience
1-3
Hello
how to translate from chinese to braille? anyone have an idea please make an example to explain.

thanks you
 
Braille is not a language so you can't translate another language into it. In computer application terms, you might have a Braille font, which would be a way to display text, just like Courier New and Times New Roman.
 
Sorry for wrong question? I mean how to convert from chinese to braille code. I have two textbox. User will enter text in chinese at textbox1. After that user will press a button and textbox2 will display in braille. I already have braille font.
 
Does that Braille font support Unicode, or only ASCII? If it supports Unicode then you don't have to do any conversion at all. If you wanted to show English characters in one TextBox in Arial and in another TextBox in Courier, what would you do? You simply set the Font of each TextBox and then copy the Text from one to the other, right? This is no difference. A font is a font. There's no language conversion. It's simply displaying the same text in two different fonts.
 
Back
Top