Thymeleaf中的HTML Unicode字符

时间:2018-07-19 13:12:12

标签: html unicode thymeleaf

我想转换<title>标记以使用Thymeleaf片段参数。我当前在标题中使用Unicode字符(U+2708, airplane)。不过,我不确定如何让Thymeleaf接受。

正常工作,没有胸腺:

<title>AppName &#x2708; Page Title</title>

结果:应用名称✈页面标题

胸腺尝试1:

<title th:text="AppName &#x2708; ${title}"></title>

结果:TemplateProcessingException:无法解析为表达式

胸腺尝试2/3:

<title th:text="${'AppName &#x2708; ' + title}"></title>
<title th:utext="${'AppName &#x2708; ' + title}"></title>

结果:AppName?页面标题

如何/应该在th属性中转义该十六进制代码,以便将其适当地显示为Unicode字符?

0 个答案:

没有答案