1<head>
2<meta charset="utf-8">
3<!-- it defines the character encoding , utf-8 stands for
4 unicode transformation format - 8 bits, utf-8 means it will
5 support to display any language -->
6 </head>
1String rawString = "Entwickeln Sie mit Vergnügen";
2byte[] bytes = rawString.getBytes(StandardCharsets.UTF_8);