Java tutorial
//package com.java2s; import java.nio.ByteBuffer; public class Main { public static byte[] getChar(char c) { return ByteBuffer.allocate(2).putChar(c).array(); } }