标签: haskell
1个Unicode字母
一个。 getChar n给出给定Unicode n的字符。
湾getCode c给出给定字符c的Unicode。
答案 0 :(得分:3)
使用fromEnum将Char转换为代表其代码点的Int。相反的转化由toEnum完成(例如toEnum 65 :: Char给出'A')。
fromEnum
Char
Int
toEnum
toEnum 65 :: Char
'A'
或者,使用模块ord中的chr和Data.Char。
ord
chr
Data.Char