How do you print raw UTF-8 characters from their numbers? [PHP]
- by Xeoncross
Say I wanted to print a ÿ (latin small y with diaeresis) from it's Unicode/UTF-8 number of "U+00FF" or hex of "c3 bf". How can I do that in PHP?
Note: In order for it show correctly in a browser I know that the first step is
header('Content-Type: text/html; charset=utf-8');