search for: u00fc

Displaying 7 results from an estimated 7 matches for "u00fc".

Did you mean: 00fc
2013 Apr 11
2
(no subject)
Dear all, Is there a quick and easy way of converting utf characters to the \uxxxx form (necessary e.g. for packages)? I mean something working like this: > utf2uxxxx("õäöü") [1] "\u00f5\u00e4\u00f6\u00fc" It is easy to program but perhaps someone already has implemented this. (I couldn't find anything useful from searches incl RSiteSearch). Thanks in advance, Kenn -- P.S. Apologies if this is double posted - there was a network error and the first message doesn't seem to have been...
2012 Aug 29
1
Wierd encoding problem
I put the complete error description into a gist (https://gist.github.com/5d2cef1414f1643fca5a) for better readability. The basic problem is that a properly encoded Json post request gets decoded an a very weird way. For example a "ü" which is encoded as "\u00fc" in uft-8 becomes ">\x93" or "~\xD4". I get different results ever time I run the decoder. Please take a look at the gist, I did my best to give as much useful information as possible. Thanks in advance! -- You received this message because you are subscribed to the G...
2014 Jan 15
0
[PATCH 2/4] hivex: python: Fix encoding for "special" test script
...return x import os import hivex @@ -13,16 +22,20 @@ assert h root = h.root () assert root -ns = [ n for n in h.node_children (root) if h.node_name(n) == u"abcd_äöüß" ] +# "abcd_äöüß" +ns = [ n for n in h.node_children (root) if h.node_name(n) == u("abcd_\u00e4\u00f6\u00fc\u00df") ] assert len (ns) == 1 -vs = [ v for v in h.node_values (ns[0]) if h.value_key(v) == u"abcd_äöüß" ] +# "abcd_äöüß" +vs = [ v for v in h.node_values (ns[0]) if h.value_key(v) == u("abcd_\u00e4\u00f6\u00fc\u00df") ] assert len (vs) == 1 -ns = [ n for n in...
2014 Jan 15
4
[PATCH 1/4] hivex: Python 2.6 does not have sysconfig.
--- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 6785037..203f34f 100644 --- a/configure.ac +++ b/configure.ac @@ -329,8 +329,8 @@ AS_IF([test "x$enable_python" != "xno"], AC_MSG_CHECKING([for Python extension suffix (PEP-3149)]) if test -z "$PYTHON_EXT_SUFFIX"; then
2010 Mar 23
1
Plot ``freezes''.
In an elderly version of ``plotSymbols'' (now in the cwhmisc package) that I had lying around, there was the example plot(1:10,xlab="\374") which the comments said would give a u-umlaut as the x-axis label. When I execute this plot (a) I get no x-axis label at all, and (b) the plot ``freezes'' in that further plotting commands (e.g. plot(runif(42))) produce no
2011 Mar 01
0
unicode&pdf font problem RESOLVED
...with display unicode fonts in pdf document in R If you can use the Cairo package to create pdf on Mac, it seems quite happy with pushing unicode characters through (probably still font family dependant whether it will display) probstring <- c(' \u2264 0.2',' \u2268 0.4',' \u00FC 0.6',' \u2264 0.8',' \u2264 1.0') Cairo(type='pdf', file='outputs/demo.pdf', width=9,height=12, units='in', bg='transparent') plot(1:5,1:5, type='n') text(1:5,1:5,probstring) dev.off() ?Cairo suggests encoding is ignored if you do t...
2010 Mar 24
0
R-help ordinal regression
...d would give a u-umlaut as the > x-axis label. > > In a Latin-1 encoding, which R gave up as default in > 2.1.0. > You should just be able to use > > plot(1:10,xlab="?") > > or failing that (and the mailer may trash that line) > > plot(1:10,xlab="\u00fc") > > > When I execute this plot > > > > ??? (a) I get no x-axis label at all, > and > > > > ??? (b) the plot ``freezes'' in that > further plotting commands > > ??? (e.g. plot(runif(42))) produce no > results.? The plot window (X11) &gt...