Tagged 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.
32
votes
9answers
2k views
When Should One Use HTML Entities
This has been confusing me for some time. With the advent of UTF-8 as the de-facto standard in web development I'm not sure in which situations I'm supposed to use the html entities and for which ones ...
12
votes
4answers
25k views
Convert HTML Character Back to Text Using Java Standard Library
I would like to convert some HTML characters back to text using Java Standard Library. I was wondering whether any library would achieve my purpose?
/**
* @param args the command line arguments
*/
...
11
votes
7answers
421 views
Inverse htmlentities / html_entity_decode
Basically I want to turn a string like this:
<code> <div> blabla </div> </code>
into this:
<code> <div> blabla </div> ...
11
votes
5answers
2k views
htmlentities in PHP but preserving html tags
I want to convert all texts in a string into html entities but preserving the HTML tags, for example this:
<p><font style="color:#FF0000">Camión español</font></p>
should be ...
10
votes
2answers
78 views
Why doesn't Twitter and Google API documentation encode ampersands in URLs?
I have read I should encode my ampersands as & in HTML.
However numerous code samples from respected companies somehow forget to do this.
Just a few examples off the top of my head:
Google ...
10
votes
5answers
283 views
JavaScript Get real length of a string (without entities)
I need to determine the length of string which may contain html-entities.
For example "&darr ;" (↓) would return length 6, which is correct, but I want these entities to be counted as only 1 ...
9
votes
1answer
104 views
Using custom entities in HTML documents
tl;dr
I'd like to understand if it is possible (and, in case, how well supported) to use custom entities in HTML documents for localization purposes.
What I envision is doing something like this:
...
7
votes
2answers
246 views
PHP: Make a string upper case but not the html entities in it?
How can I make the content in a string to upper case but not the html entities in it? Is it possible?
$str = 'FUNDA MENTALISM';
echo strtoupper($str);
I want to produce this,
'FUNDA ...
7
votes
3answers
4k views
Euro sign or other entity in Javascript alert/messagebox
Does anybody know how i can show a euro or other html entity in javascript alert windows?
6
votes
3answers
7k views
5
votes
2answers
250 views
Is there a possibility to display an ä as an ä in Vim?
Is there a possibility to display characters in a Vim window (that is: on the screen) that are different from the underlying characters in the buffer?
For example, if filetype is set to html, I'd ...
5
votes
2answers
346 views
When escaping a string with HTML entities, can I safely skip encoding chars above Unicode 127 if I use UTF-8?
When outputting a string in HTML, one must escape special characters as HTML entities ("&<>" etc.) for understandable reasons.
I've examined two Java implementations of this:
...
5
votes
2answers
657 views
XHTML5 and HTML4 character entities
Does XHTML5 support character entities such as and —. At work we can require specific software to access the admin side of the site, and people are demanding multi-file-upload. ...
5
votes
2answers
6k views
C#, function to replace all html special characters with normal text characters
I have characters incoming from an xml template for example:
& >
Does a generic function exist in the framework to replace these with their normal equivalents?
5
votes
7answers
1k views
5
votes
5answers
2k views
Some Basic Python Questions
I'm a total python noob so please bear with me. I want to have python scan a page of html and replace instances of Microsoft Word entities with something UTF-8 compatible.
My question is, how do you ...
4
votes
3answers
61 views
Remove html entities from a databases
Due to errors of my predecessors a (MySQL) database I would like to use contains a lot of HTML entities (e.g. € instead of €).
As the database should contain raw data (a database shouldn't ...
4
votes
1answer
504 views
Encoding a tab in html
I can encode a space using in an HTML document. Is there an equivalent for the tab character?
I'm trying to preload a <textarea> with text that contains tabs, but my CMS removes any ...
4
votes
3answers
428 views
Ignoring HTML entity for ampersand in MySQL Full-Text Search
I have a lot of data that is being entered into records with the HTML entity &. A full-text search for the word "amp" will result in records containing & to be shown, which is highly ...
4
votes
5answers
4k views
Resolving html entities with NSXMLParser on iPhone
i think i read every single web page relating to this problem but i still cannot find a solution to it, so here i am.
I have an HTML web page wich is not under my control and i need to parse it from ...
4
votes
4answers
3k views
How to unescape apostrophes and such in Python?
I have a string with symbols like this:
'
That's an apostrophe apparently.
I tried saxutils.unescape() without any luck and tried urllib.unquote()
How can I decode this? Thanks!
4
votes
4answers
745 views
Converting fractions to html entities
We've got some fraction information stored in the database, e.g. ¾ ½
Short of doing a search and replace, are there any inbuilt PHP functions that will automatically convert these to proper html ...
3
votes
1answer
77 views
Disable all tags except for <a>
I want to encode (htmlentities) or disable all tags except for <a> tags.
How can I achieve this?
3
votes
2answers
142 views
What is the difference between   and  ?
I have written one XSLT to transform xml to html. If input xml node contains only space then it inserts the space using following code.
<xsl:text> </xsl:text>
There is another ...
3
votes
2answers
49 views
How do I reliably convert special characters like £ to HTML equivalents using Cocoa?
I'm trying to feed Mail.app some simple html: lists, bold font, some italics. However, I noticed that if I use characters like £, then Mail.app just doesn't show anything. I realized I need to convert ...
3
votes
4answers
102 views
How to convert & characters to HTML characters?
<?php echo "Hello World!"; ?>
should be:
<?php echo "Hello World!"; ?>
How do I do that in PHP?
3
votes
4answers
129 views
XML charactor encoding issues with accents
I have had the problem a few times now while working on projects and I would like to know if there's an elegant solution.
Problem
I am pulling tweets via XML from twitter and uploading them to my DB ...
3
votes
2answers
181 views
How to prevent DOMXPath from expanding HTML entities?
I'm using DOMDocument and DOMXPath in PHP to find elements in an HTML document.
This document contains HTML entities like   ; and I would like these entities to be preserved in the XPath ...
3
votes
1answer
525 views
html entities in haml
How do you write:
= link_to 'Select »', "/"
in HAML properly?
= link_to 'Select »', "/"
just prints » again.
ANSWER FROM Phrogz
= link_to('Select ...
3
votes
5answers
965 views
Is there a faster way to decode html characters to a string than Html.fromHtml()?
I am using Html.fromHtml(STRING).toString() to convert a string that may or may not have html and/or html entities in it, to a plain text string.
This is pretty slow, I think my last calculation was ...
3
votes
6answers
589 views
How to display XML source code using HTML with Emacs?
In the HTML file, I need to show some XML code. The problem is that I can't use
<pre>..</pre>
to show '<' and '>'.
What would be the solution for this problem?
ADDED
From the ...
3
votes
2answers
431 views
HTML character entities and character encoding set
When including HTML entities in an HTML document, do the entities need to be from the same character encoding set that the document is specified to be using?
For example, if I am going to use the ...
3
votes
2answers
836 views
Converting HTML to its safe entities with Javascript
I'm trying to convert characters like < and > into < and > etc.
User input is taken from a text box, and then copied into a DIV called changer.
here's my code:
function ...
3
votes
3answers
582 views
Datatables pagination characters “<<” and “<” not displaying correctly in IE and Safari
I'm using the DataTables jQuery plugin and am having issues with the First and Previous pagination links displaying correctly in IE and Safari (Firefox and Opera work).
"<<" and "<" ...
3
votes
5answers
782 views
Best practice. Do I save html tags in DB or store the html entity value?
I was wondering about which way i should do the following. I am using the tiny MCE wysiwyg editor which formats the users data with the right html tags. Now, i need to save this data entered into the ...
3
votes
4answers
134 views
what is the name of this type of encode?
If you copy and paste the following text in a html page,
انوان
you will the following Arabic text:
انوان
My ...
3
votes
3answers
2k views
Decode Numeric HTML Entities in ColdFusion?
I need a way to transform numeric HTML entities into their plain-text character equivalent. For example, I would like to turn the entity:
é
into the character:
é
Through some googling ...
3
votes
2answers
4k views
Replace html entities with the corresponding utf-8 characters in Python 2.6
I have a html text like this:
<xml ... >
and I want to convert it to something readable:
<xml ...>
Any easy (and fast) way to do it in Python?
3
votes
3answers
3k views
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:
© Copyright Mikle 2009 - ∞
This works perfectly in Firefox 2, 3 and Chrome. IE7 ...
3
votes
4answers
6k views
Convert characters to HTML Entities in Cocoa
I am currently trying to put together an URL where I specify some GET parameters. But I want to use japanese or other characters too in this URL.
Is there a way to convert a NSString to a string ...
3
votes
4answers
5k views
Setting nodeValue of text node in Javascript when string contains html entities
When I set a value of a text node with
node.nodeValue="string with &#xxxx; sort of characters"
ampersand gets escaped. Is there an easy way to do this?
3
votes
3answers
5k views
Javascript: How to dynamically create an <option> that contains an HTML entity (— … «)
I'd like to add an <option> element to a <select> element where the <option> element's text contains an HTML entity: —
In HTML, the code would look like this:
<select ...
3
votes
4answers
945 views
How do I make JSP tag files NOT ignore all whitespace?
I'm really stumped on this one. I want to output a list and have the tag file take care of commas, singular versus plural, etc. but when I display the list it completely ignores whitespace so ...
2
votes
3answers
67 views
encode special character in html entities in perl
I have a string where special characters like ! or " or & or # or @, ... can appear. How can I convert in the string
str = " Hello "XYZ" this 'is' a test & so *n @."
automatically every ...
2
votes
1answer
43 views
Python, Beautiful Soup: ® - how to convert to proper regmark
I am scraping a webpage that contains HTML that looks like this in the browser
<td>LGG® MAX multispecies probiotic consisting of four bacterial trains</td>
<td>LGG® MAX ...
2
votes
2answers
70 views
HTML Entity Converter in Ada
I want to write an Ada program which replaces Latin1 characters with applicable HTML entities, but my code does not work: text.txt and converted.txt are always the same. My tutor said that code is ...
2
votes
1answer
52 views
How to disable auto parsing of chars such as “>” so that they never show up as “&qt;” when they are displayed in the browser?
Does anyone know how to disable auto parsing of chars such as “>” so that they never show up as “&qt;” when they are displayed in the browser? I thought that it was just related to xml parsing but it ...
2
votes
1answer
86 views
Characters between angle brackets (<>) stripped out in database?
I want to store mysql regular epxression to mysql database field. Specifically I want to store word boundaries expression into the database. For example:
[[:<:]]my expression here[[:>:]]
If I ...
2
votes
1answer
116 views
Prevent jQuery from escaping html entities
I have some simple html editor. Let's say that user types following:
<p>Ok, this just & sucks :) –</p>
and it is saved to some variable:
var content = "<p>Ok, ...
2
votes
1answer
110 views
Rspec testing for html entities in page content
I'm writing a request spec and would like to test for the presence of the string "Reports » Aging Reports". I get an error (invalid multibyte char) if I put in the character in my matcher expression ...