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.
このüをhtmlで表示する必要があります
サーバーからüとして応答を取得します。
しかし、ブラウザはそれを次のように表示します。
応答接続: キープアライブ コンテンツ タイプ: テキスト/html; charset=utf-8 これは完了したと思いますが、それでも同じエラーが発生します
UTF-8 文字セットを使用するように Content-Type ヘッダーを設定する必要があり header("Content-Type:text/html;Charset=UTF-8");ます。重要なのは、php ファイルも UTF-8 文字セットを使用している必要があることです。
header("Content-Type:text/html;Charset=UTF-8");