Jitendra Vyas
Jitendra Vyas

Reputation: 152935

How to show text as a superscript in "Alt text"?

How to show text as a superscript in Alt text

like this:

Value10

Upvotes: 4

Views: 6694

Answers (3)

Matt Blaine
Matt Blaine

Reputation: 1976

Like the knittl and SLaKs said, try unicode character html entities.
http://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts

¹²³⁴⁵⁶⁷⁸⁹⁰

Result: ¹²³⁴⁵⁶⁷⁸⁹⁰

Bigger: ¹²³⁴⁵⁶⁷⁸⁹⁰

Though, for the sake of readability, you might just want to do something like 10^1234.
Or, for citations, whatever[1].

Upvotes: 5

SLaks
SLaks

Reputation: 888203

You can't; alt text only supports plain text without formatting.

However, you can fake it with Unicode characters. (¹⁰)

Upvotes: 2

knittl
knittl

Reputation: 265918

alt text is just normal text, you can try to insert unicode supertext characters:

Value¹⁰

but it will depend on the font of the viewer (and proper encoding) if it works

Upvotes: 2

Related Questions