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.
我在 Erlang 上使用连接器。它从 Javascript 中获取请求,例如“controler?q=value”。如果我发送 Unicode 值,浏览器会发送一个编码字符串。
http://127.0.0.1:8001/controler?q=%D1%82%D0%B5%D1%81%D1%82
如何将此字符串转换为 UTF-8?
我前段时间写了一个类似目的的模块:https ://gist.github.com/816291 你可以像这样使用它:
io:format("~ts~n",[uri:decode_uri_component("%D1%82%D0%B5%D1%81%D1%82")]). тест ok
您可能想看看unicode 模块。