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;