Closed wvxvw closed 10 years ago
I didn't expect that sort of error. This function is for decoding multi-byte characters.
(readability--decode-json-string
"<p>良いプログラマーは ' </p>")
;; => "<p>良いプログラマーは ' </p>"
(string-to-number "826F" 16)
;; => 33391
(format "%c" (read "#x826F"))
;; => "良"
Now '
remains intact. Thanks to you!
I ran into this error:
And I believe that the culprit is this:
I.e. you wanted to extract just the integer and to print the corresponding character, but you captured the sharp and the semicolon signs too.