We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bad20d commit 38ebb3fCopy full SHA for 38ebb3f
1 file changed
examples/rune.v
@@ -1,9 +1,9 @@
1
fn main() {
2
- // GRINNING FACE😀 => f0 09 98 80
3
- grinning_face := rune(0xf09f9880)
+ // GRINNING FACE 😀
+ grinning_face := rune(0x1f600)
4
println(grinning_face)
5
6
// COMMERCIAL AT@ => 0x40
7
- commercial_at := rune(0x40000000)
+ commercial_at := rune(0x40)
8
println(commercial_at)
9
}
0 commit comments