<html>
<head>
<meta charset="utf-8">
</head>
<body>
$str = "My name is Øyvind Åsane. I'm Norwegian.";
echo htmlentities($str, ENT_QUOTES); // Will only convert double quotes (not single quotes), and uses the character-set Western European
</body>
</html>