Top "Html-entities" questions

HTML entities provide a method of entering characters that cannot be expressed in the document's character encoding or that cannot easily be entered on a keyboard.

Short way to escape HTML in Bash?

The box has no Ruby/Python/Perl etc. Only bash, sed, and awk. A way is to replace chars by …

bash html-entities
Does unicode or HTML have a vertical double guillemet (chevron)?

Does anybody know if there's a double chevron symbol in unicode/HTML-space similar to the double guillemet represented by &…

html unicode html-entities
How to show Unicode characters in IE using HTML

I'm trying to show the copyright and infinity signs at the bottom of my page using this code: &#x00…

internet-explorer unicode html-entities
Symfony2 : Auto htmlentities using Twig

I'm displaying some variable retrieved in my database using Twig : <p>{{ my_variable }}</p> The thing …

symfony twig html-entities
Replace html entities with the corresponding utf-8 characters in Python 2.6

I have a html text like this: &lt;xml ... &gt; and I want to convert it to something …

python html-entities python-2.6
PHP htmlentities not working even with parameters

Of course this has been asked before and have searched for solutions, all which have not worked thus far. I …

php html-entities htmlspecialchars
htmlentities returning empty string

The following code outputs an empty string. The cause is the "ó" in $text, but why? What characters does utf-8 encode …

php html-entities
Decode HTML entities in JavaScript?

Sample conversions: &amp; -> `&` &gt; -> `>` Any small library function that can handle this?

javascript html html-entities
How to decode HTML entities in Rails 3?

I am trying to decode some HTML entities, such as '&amp;lt;' becoming '<'. I …

ruby-on-rails ruby ruby-on-rails-3 html-entities html-encode
What do the ENT_HTML5, ENT_HTML401, ... modifiers on html_entity_decode do?

Since php 5.4 html_entity_decode introduces four new flags, with a minimal explanation ENT_HTML401 Handle code as HTML 4.01. ENT_…

php html html-entities htmlspecialchars