[]
Converts the value of a Unicode character to it's "Katakana" equivalent. Special character handling for the Japanese language.
public static char ToKatakana(char c)
Type | Name | Description |
---|---|---|
char | c | A Unicode character. |
Type | Description |
---|---|
char | The Katakana equivalent of c. - or - The unchanged value of c, if c is already a Katakana or not Hiragana. |
Converts the value of a Unicode character to it's "Katakana" equivalent with an optional setting of full or half width. Special character handling for the Japanese language
public static char[] ToKatakana(char c, bool fullWidth)
Type | Name | Description |
---|---|---|
char | c | A Unicode character. |
bool | fullWidth | true to return a full width Katakana, and false to return a half width Katakana. |
Type | Description |
---|---|
char[] |