public static String decode(final String text) throws DecoderException {
   return BCODEC.decode(text);
 }
 public static String encode(final String text) throws EncoderException {
   return BCODEC.encode(text, Charsets.UTF_8.name());
 }