html encoding utf-8 code example
Example 1: doctype html charset utf-8
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
Example 2: Encoding UTF
String rawString = "Entwickeln Sie mit Vergnügen";
byte[] bytes = rawString.getBytes(StandardCharsets.UTF_8);