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.
私のAndroidアプリでは、次の方法を使用しています:
URLDecoder.decode(this.name,"UTF-8")
サーバー側から送信された名前をデコードします。PHP では、次を使用します。
urlencode($name);
どうやら、これは機能していません。名前を国民的キャラクターで表示したい。この問題を解決する方法を教えてください。前もって感謝します。
サーバー側で試してください:
urlencode(utf8_encode($name));