我在html页面标题中遇到了一个波斯语单词的问题。
请看这个:
而且:
显示不正确。我该如何解决这个问题?
答案 0 :(得分:0)
始终正确设置编码(例如在html文档中或通过标题):
使用UTF-8的示例:
在HTML中:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
...
在PHP中:
<?php
header('Content-Type: text/html; charset=utf-8');
同时查看从右到左(RTL):Creating HTML Pages in Arabic, Hebrew and Other Right-to-left Scripts
如果您使用PHP来提供页面,请查看以下资源: