如何用符号℃代替文字?

时间:2019-01-08 05:07:55

标签: javascript html css

我在Wordpress一侧有一个简单的页面,并希望在其中使用符号℃。

我更改了与链接相关的代码(见下文):

https://www.alt-codes.net/degree_sign_alt_code.php

//code adjusted as below

title:{
          //initial text with a word Celsius        
             text: "Average low winter temperature  in  Celsius"

              //I've changed code as below:
             // text: "Average low winter temperature  in  '&#8451'"
  },

..但是输出显示多余的字符,而不是符号℃。

如何显示符号℃而不是单词“ Celsius”?

谢谢

3 个答案:

答案 0 :(得分:1)

您可以使用Unicode对其进行转义,请使用 \ u2103

title: {
   text: "Average low winter temperature \u2103" 
   // expected Average low winter temperature ℃
}

答案 1 :(得分:1)

这是您需要的HTML代码

<p>I will display &#176;C</p>

还要检查显示度数符号here

的其他方法

答案 2 :(得分:0)

这是您需要的代码

 <p>I will display &#x2103;</p>