So I've recently had to work on some web application that needed to be available in Korean, and I ran into the issue of unicode not working for me.
I looked at this answer, and tried these suggestions with no luck. Unicode string php
Here is my simple code :
<?php
header('content-type:text/html;charset=utf-8');
echo '
<!DOCTYPE html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<body>
';
echo '안녕하세요<br>';
echo '</body>
</html>';
?>
All I get in my browser window are question marks...???????
Not sure what I'm doing wrong here...
If it matters I am using the Bitnami WAPP Stack 5.6.8-0...that includes Apache 2.4.12 and PHP 5.6.8