Tagged Questions
The character-entities tag has no wiki summary.
6
votes
1answer
493 views
Does .NET have built-in functions mapping between character entities and their unicode values?
& Eacute ; \u00C9
& egrave ; \u00E8
& eacute ; \u00E9
& apos ; \u0027
something like:
f("'") = '\u0027' where f :: string -> char
g('\u0027') = "'" where ...
3
votes
5answers
177 views
What's the HTML character entity for the # sign?
What's the HTML character entity for the # sign? I've looked around for "pound" (keeps returning the currency), and "hash" and "number", but what I try doesn't seem to turn into the right character.
3
votes
3answers
4k views
Tab Character Entity for XHTML?
Does anyone know what the character entity for a tab is in xhtml?
(Um if there is one)...
2
votes
3answers
2k views
Is there a Java XML API that can parse a document without resolving character entities?
I have program that needs to parse XML that contains character entities. The program itself doesn't need to have them resolved, and the list of them is large and will change, so I want to avoid ...
1
vote
1answer
226 views
Parsing with SAX and handling character entities
I am parsing a MathML expression with SAX (although the fact that it's MathML may not be completely relevant). An example input string is
<math xmlns='http://www.w3.org/1998/Math/MathML'>
...
1
vote
0answers
84 views
What is the earliest version of TinyXML that correctly translates character entities?
According to TinyXML documentation, the latest version of the software correctly translates the standard five XML character entities (&, ", ', >, <) into their human-readable ...
1
vote
4answers
489 views
Convert HTML Character Entities back to regular text using javascript
the questions says it all :)
eg. we have >, we need > using only javascript
Update: It seems jquery is the easy way out. But, it would be nice to have a lightweight solution. More like a ...
1
vote
4answers
599 views
Seeing strange character for apostrophe on wordpress based page, but only in Internet Explorer
I'm gettign this strange character instead of an apostrophe on a page that's powered by Wordpress, but only in Internet Explorer. Other browsers (chrome, firefox) display as the actual apostrophe.
...
1
vote
2answers
1k views
Encoding xml using ascii encoding instead of character entities
Alright, so here is my issue. I need to generate xml in Java to pass onto another application. I started off thinking this would be easy using an org.w3c.dom.Document. Unfortunately the application I ...
0
votes
1answer
282 views
Drupal: character entity in menu link title
I have a menu link whose link title contains a character entity (e.g. La Niña). However, Drupal isn't recognising the character entity and is further encoding the ampersand, so I'm ending ...
0
votes
1answer
71 views
Two Different Types of Character Entities?
Clearly there are two different types of character entities in HTML/XML.
There are the ones that are specified by numbers, i.e. < and >
And then there are the ones that are ...
0
votes
1answer
64 views
FCL utility to convert XML named entities to numeric equivalents?
Of the FCL classes (or even using an external API) is there a utility assembly, class or members that can be plugged into a .NET application to convert all named entities to their numeric ...
0
votes
4answers
465 views
Turning HTML character entities to 'regular' letters… why is it only partially working?
I'm using all of the below to take a field called 'code' from my database, get rid of all the HTML entities, and print it 'as usual' to the site:
<?php $code = ...
0
votes
3answers
115 views
Is it necessary to use character entities for quotes in HTML?
I understand the need for &, <, etc. But is " necessary? I suppose it could be useful inside tag attributes, but inside the text, outside any tag, is it necessary?