12 lines
176 B
PHP
12 lines
176 B
PHP
<?php
|
|
|
|
$text = "Ich bin ä ö ü ß Ä Ö Ü";
|
|
echo $text;
|
|
$text = utf8_encode($text);
|
|
echo $text;
|
|
|
|
|
|
?>
|
|
|
|
|