看起来像是UTF8编码...
鱼
它在浏览器中显示为“鱼”。
这个字符串存储在数据库中,如何将其转换为C#中的中文单词?
感谢
答案 0 :(得分:2)
您需要对字符串进行HTML解码。为此你可以使用HttpUtility.HtmlDecode
:
livenessServer1 :: UTCTime -> FilePath -> Server LivenessProbeAPI1
livenessServer1 initialModificationTime monitorPath = do
mtime <- liftIO $ getModificationTime monitorPath
case mtime == initialModificationTime of
True -> return $ Liveness initialModificationTime mtime
False -> throwError $ err500 { errBody = "File modified." }