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.
我有一个带有包含 UTF8 字母的文本框的 jsp 页面。当我用 javascript 拉取值时,它变成了这种格式:%u05EA%u... 如何将它转换回我可以在 java 中理解的字符串?谢谢。
不知道你是如何得到它的,但你可以在 javascript 中使用这个创可贴:
unescape('%u05EA'); //"ת"
不过最好解决原来的问题。