Is there any simple way in PHP 5 to convert from unicode code points such as
U+1F9DB, U+200D, U+2642, U+FE0F
to a byte sequence
F0 9F A7 9B, E2 80 8D, E2 99 82, EF B8 8F
\xf0\x9f\xa7\x9b \xe2\x80\x8d \xe2\x99\x82 \xef\xb8\x8f
There are tables, but I assume, there's an easier way?