Java Utililty Methods Char to DBC

List of utility methods to do Char to DBC

Description

The list of methods to do Char to DBC are organized into topic(s).

Method

charToDBC(char input)
To DBC
if (input > '\uFF00' && input < '\uFF5F') {
    return (char) (input - 65248);
if (input == '\u3000') {
    return ' ';
return input;
chartoDbcCase(char src)
to Dbc Case
if (src == 12288) {
    src = (char) 32;
} else if (src > 65280 && src < 65375) {
    src = (char) (src - 65248);
return src;