Here you can find the source of hiraganaToKatakana(byte[] b)
public static void hiraganaToKatakana(byte[] b)
//package com.java2s; public class Main { public static void hiraganaToKatakana(byte[] b) { int len = b.length; if ((len & 1) == 1) { b[len - 1] = '\0'; len--;//from w w w . j av a 2 s . co m } for (int i = 0; i < len; i += 2) { int high = b[i] & 0xff; int low = b[i + 1] & 0xff; if (high == '\0' || low == '\0') { break; } else if (high == 0x24 && (low >= 0x21 && low <= 0x76)) { b[i] = (byte) 0x25; } } } }