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.
現在、PHP で次のようにして UTF-8 から ASCII に変換していますが、UTF-8 文字は HTML エンコードされています。たとえば、ドイツ語の ß 文字は に変換されßます。
ß
$sData = mb_convert_encoding($sData, 'HTML-ENTITIES','UTF-8');
Linux上のGCC C++では、これを行う同等の方法は何ですか?
ß実際には、 の代わりに のような別の形式を取ることもでき&#xNNN;ます。
&#xNNN;