Unicode character not displayed correctly
| Newsgroups | gmane.comp.lang.ocaml.beginners |
|---|---|
| Message-ID | <[email protected]> |
I wish to display the U+0B67 character in OCaml, so I type : # let s2="\x0B\x67";; val s2 : string = "\011g" # print_string s2;; g- : unit = () why is it displayed as a « g » ? What is the range of characters correctly displayed with OCaml ?