Home  >  Article  >  Web Front-end  >  How to convert html special character encoding into special characters? Is there any method?

How to convert html special character encoding into special characters? Is there any method?

云罗郡主
云罗郡主forward
2018-10-15 14:20:235362browse

The content of this article is about how to convert HTML special character encoding into special characters? Is there any method, which has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Note: Sometimes we will encounter some special characters inexplicably: These characters can be displayed normally on the web page, but these characters are not recognized in special situations in the APP:

For example: ' ; This is actually a single quotation mark: ' :

 class Program
    {        static void Main(string[] args)
        {            string test = "test'abc";            string a = HttpUtility.HtmlDecode(test);
            Console.WriteLine(a);
            test = "testΓabc";
            a = HttpUtility.HtmlDecode(test);
            Console.WriteLine(a);
            a = HttpUtility.HtmlDecode("a   r");
            Console.WriteLine(a);

            Console.Read();
        }
    }

Rendering:

Others:

HTML special character encoding comparison table

##电影电影#电影代们##单进制制造##ΑΒΕΘ##ΚΚ# 922;ΛΛΛΜΜ 924;ΝΝΝΞΞΞΟΟΟΡΥΨ ;##αααβββγγγδδδε #εεζζζ ι##κκκ λλλμμμ #νννξξξοοο ςυψϒ…##′′′″″″‾‾‾ℑ##ℜℜℜ™™ ™ℵℵℵ#←#← ←↑↑↑→→ →
十进制周京 特许发十进制制造 ##Α Β
Β Γ Γ Δ Δ Δ Ε
Ε Ζ Ζ Ζ Η Η Η Θ
Θ Ι Ι Ι
##Π Π Π Ρ Ρ
Σ Σ Σ Τ Τ Υ
Φ Φ Φ Χ Χ Ψ Ψ
Ω Ω Ω
## η η η θ θ θ
ι ι
##π π π ρ ρ ρ ς
ς σ σ σ τ τ τ υ
υ φ φ χ χ χ ψ
ψ ω ϑ ϑ ϑ ϒ
ϖ ϖ &bull ;
##⁄
      ¡ ¡ ¡
¢ ¢ ¢ £ £ £ ¤ ¤ ¤
¥ ¥ ¥ ¦ ¦ ¦ § § §
¨ ¨ ¨ © © © ª ª ª
« « « ¬ ¬ ¬   ­ ­
® ® ® ¯ ¯ ¯ ° ° °
± ± ± ² ² ² ³ ³ ³
´ ´ ´ µ µ µ " " "
<<<> > > '   '

以上就是对如何将html特殊字符编码转换成特殊字符?有什么方法的全部介绍,如果您想了解更多有关HTML视频教程,请关注PHP中文网。

The above is the detailed content of How to convert html special character encoding into special characters? Is there any method?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:cnblogs.com. If there is any infringement, please contact admin@php.cn delete