如何转换>>鱼>>到C#中的“鱼”

时间:2017-08-23 12:32:49

标签: c# utf-8

下面的

看起来像是UTF8编码...

鱼

它在浏览器中显示为“鱼”。

这个字符串存储在数据库中,如何将其转换为C#中的中文单词?

感谢

1 个答案:

答案 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." }