Ben
Ben

Reputation: 7802

What is a good resource for HTML character codes -> glyph and

I've already found a good site to convert HTML character codes to their respective glyphs:

http://www.public.asu.edu/~rjansen/glyph_encoding.html

However, I need a bit more information. Does anyone know of a site like the one above that also provides information on what type of character code it is? Meaning, is it a special character? Is the glyph visible? Etc...

So far I have found some tables with this information, but they aren't as complete as the resource above. I would really like to get my hands on a complete table.

Thanks, -Ben

Upvotes: 0

Views: 608

Answers (4)

ndp
ndp

Reputation: 21996

Here's a quick, low-footprint way to look them up: &what;

Upvotes: 1

DisgruntledGoat
DisgruntledGoat

Reputation: 72560

The character map on Ubuntu (and I assume most other Linux distros) is fantastic. You can search for any character by its name or description (e.g. "arrow") really easily.

Windows' character map is a poor imitation but kinda works too. It seems to decide that certain fonts (Arial, Verdana etc) can't display some characters, even though they work absolutely fine. (Hint: try MS's more recent font creations like Calibri for better results.)

Once you've found a character you can either:

  • Copy it and use it directly (requires pages to be UTF-8) like this: ↗
  • Insert it as a hexadecimal entity. The above character is "U+2197 North East Arrow" so the entity would be ↗
  • Convert the hex code to decimal (the calculators on Windows and Linux can do this). The above example is ↗

Upvotes: 1

Alan Moore
Alan Moore

Reputation: 75242

I like FileFormat.Info--e.g.: http://www.fileformat.info/info/unicode/char/20ac/index.htm

Upvotes: 1

Srikar Doddi
Srikar Doddi

Reputation: 15599

HTML Entity Character Lookup

Upvotes: 1

Related Questions