If want to write Unicode to database through Hibernate, need add the code below to hibernate.cfg.xml or persistence.xml.
<property name = "hibernate.connection.useUnicode" value = "true" />
<property name = "hibernate.connection.characterEncoding" value = "UTF8" />

