[Noisebridge-discuss] Hexidecimal for "

Seth David Schoen schoen at loyalty.org
Fri Jan 4 21:01:39 UTC 2013


Taylor Alexander writes:

> On Jan 4, 2013 1:16 AM, "Jonathan Lassoff" <jof at thejof.com> wrote:
> >
> > "man ascii" ftw
> 
> OP is on windows. Though asciitable.com certainly wins. As does googling
> for ASCII table.

You can also try opening a Python interpreter and running ord on the
character.

>>> ord("R")
82
>>> hex(ord("R"))
'0x52'

For Unix users:

$ echo -n R | xxd -ps
52


Also, there is a great Unix program called "unicode" to tell you about the
enjoyable world of Unicode characters. :-)

-- 
Seth David Schoen <schoen at loyalty.org>      |  No haiku patents
     http://www.loyalty.org/~schoen/        |  means I've no incentive to
  FD9A6AA28193A9F03D4BF4ADC11B36DC9C7DD150  |        -- Don Marti



More information about the Noisebridge-discuss mailing list