HTML Unicode 问题字符在输入框中无法正确显示

发布于 2024-11-09 12:29:38 字数 353 浏览 0 评论 0原文

我有一个表单,当我尝试输入文本(如一些 unicode 字符)并保存到数据库时。再次检索数据时,字符将替换为“?”在输入框(输入类型=“文本”)字符中。 (注意:字符在 html 正文中正确显示

我有 在我的页面

我的输入是

Hợp đồng kinh tế

检索文本后就像

h?p d?ng kinh t?

I am having a form and when i am trying to input text like some unicode characters and saving to database. While retrieving the data again the characters are replacing with '?' in inputbox (input type="text") characters. (Note: the characters are correctly displaying in html body)

I am having <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> in mypage

My input is

Hợp đồng kinh tế

After retrieving the text is like

h?p d?ng kinh t?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

东北女汉子 2024-11-16 12:29:38

抱歉问错问题了。

问题仅与数据库中的数据类型有关。我将数据类型从 varchar 更改为 nvarchar

Sorry for the wrong question.

The problem is with Datatype in DATABASE only. I changed the datatype from varchar to nvarchar

却一份温柔 2024-11-16 12:29:38

你使用什么数据库?如果是 MySQL,您可能需要相应地配置您的连接:

jdbc:mysql://localhost/<your username>?characterEncoding=UTF-8 

What database do you use? If it is MySQL, you may want to configure your connection accordingly:

jdbc:mysql://localhost/<your username>?characterEncoding=UTF-8 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文