I have a friend that's been using the jQuery Keypad plugin. He now needs superscripts (and/or perhaps subscripts) of several characters. Does anyone know how to make or find (copy/paste) the following superscript characters in UTF-8?
Superscript characters needed: nd th st rd [ ] ( )
The nd, th, st, rd are for things like 22nd, 7th, 1st, 3rd (but superscripted)
[ ] ( ) would also be needed.
The jQuery Keypad plugin is currently being used with some extra BBCode functionality.
http://keith-wood.name/keypad.html
var custom_keypad_bbcode = [
'⁰|¹|²|³|⁴|⁵|⁶|⁷|⁸|⁹|¢|£|' + $.keypad.QTAT,
'‘|’|“|”|–|—|©|®|™|¼|½|¾|' + $.keypad.ITALIC,
'à|á|â|ã|ä|å|æ|ç|è|é|ê|ë|' + $.keypad.QUOTE,
'ì|í|í|î|ï|ñ|ò|ó|ô|õ|ö|ø|' + $.keypad.ULINE,
$.keypad.SHIFT + '|ð|þ|ù|ú|û|ü|ý|ÿ|' + $.keypad.CLOSE + '|' + $.keypad.BOLD,
];
I'm thinking of using BBCode, but I would prefer to write out the characters in a UTF-8. I found the following list, but it doesn't include superscript "t" or "h".
http://www.fileformat.info/info/unicode/block/superscripts_and_subscripts/list.htm
Does anyone know how to make or find (copy/paste) the needed superscript characters in UTF-8?