Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
16 進コード c2ae を持っています。これを UTF-8 文字に変換する方法は次のとおりです: ®. 任意の 16 進コードに対して汎用的でシンプルなソリューションが必要です。
更新: これは d0a6 のような任意の utf-8 16 進数コードで機能するはずです
function hexStringToString($hex) { return pack('H*', $hex); }