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.
\u0080は、入力文字がWindows-1252\x80のユーロ記号であることを意味します。したがって、文字列がこの文字セットでエンコードされていると仮定すると、UTF-8 入力でのみ機能するため、UTF-8 に変換する必要があります。json_encode
\u0080
\x80
json_encode
$string = iconv('Windows-1252', 'UTF-8', $string);