mirror of
https://gitee.com/johng/gf
synced 2026-07-08 22:40:30 +08:00
13 lines
210 B
Go
13 lines
210 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g/encoding/gurl"
|
|
"gitee.com/johng/gf/g/encoding/ghtml"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(gurl.Decode("<"))
|
|
fmt.Println(ghtml.SpecialChars("<"))
|
|
}
|