[[haddock @ 2005-01-13 14:44:24 by ross] ross**20050113144424 Describe numeric character references. ] { hunk ./doc/haddock.xml 1233 + Character references + + Although Haskell source files may contain any character + from the Unicode character set, the encoding of these characters + as bytes varies between systems, so that only source files + restricted to the ASCII character set are portable. Other + characters may be specified in character and string literals + using Haskell character escapes. To represent such characters + in documentation comments, Haddock supports SGML-style numeric + character references of the forms + &#D; + and + &#xH; + where D and H + are decimal and hexadecimal numbers denoting a code position + in Unicode (or ISO 10646). For example, the references + λ, λ + and λ all represent the lower-case + letter lambda. + + +
}