vote up 10 vote down star
1

I know there are HTML entities for 1/2, 1/4, and 3/4, but are there others? Like 1/3 or 1/8? Is there a good way to encode arbitrary fractions?

flag

7 Answers

vote up 25 vote down check

how about 15/16? (<sup>15</sup>/<sub>16</sub>)

link|flag
1  
...well, if you don't care about semantic code, that is. – Nouveau Oct 6 '08 at 8:03
@Nouveau: What would you suggest as a semantic alternative? – Joe Lencioni Oct 13 '08 at 16:23
vote up 1 vote down

Isn't just 15/16ths alright? Or even 15/16ths (15/16<sup>ths</sup>)?

link|flag
There's no need to spell out the "ths". 15/16 is pronounced "fifteen sixteenths". – Bill the Lizard Oct 6 '08 at 17:45
vote up 7 vote down
1/2 -- &frac12;
1/4 -- &frac14;
3/4 -- &frac34;
1/8 -- &frac18;
3/8 -- &frac38;
5/8 -- &frac58;
7/8 -- &frac78;
1/3 -- &#8531;
2/3 -- &#8532;
1/5 -- &#8533;
2/5 -- &#8534;
3/5 -- &#8535;
4/5 -- &#8536;
1/6 -- &#8537;
5/6 -- &#8538;

...but you could also encode them as decimals: 15/16 = 0.9375 ;)

link|flag
vote up 0 vote down

this would depend on you exact needs and audience. for most purposes many methods would be appropriate. 15/16, 15 parts of 16, 93.75%, 15/16 all mean the same, you might even use symbols like ++++++++++++++-

for some more complex scenarios you will need more complex solutions more like latex then html. I belive there are also server side components that take latex descriptions and crete images that are browser compatible such as described here: http://www.fauskes.net/nb/htmleqII/

link|flag
vote up 0 vote down

For more complex scenarios there is also MathML. The support for this is slowly getting better. Internet Explorer seems to lag behind with this as well.

link|flag
vote up 0 vote down

There is also a standard called MathML. But is for XML unfortunately. However if you have more expressions you might consider switching to basic XML.

link|flag
vote up 2 vote down

For the existing fractions as Unicode codepoints (which are mapped to by HTML entities), search for "vulgar fraction" in the Unicode Character Names Index.

Now, for generic fractions, which work in HTML but also work in plain text, use the super- and subscript digits (see Unicode Codepoint Chart, search for "Superscripts") separated by the fraction slash character.

Your example implemented as above:

¹⁵⁄₁₆

link|flag
It works in comments too: ¹⁵⁄₁₆ – ΤΖΩΤΖΙΟΥ Oct 6 '08 at 9:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.