📄 utf8
字号:
utf8.c AOK [utf8_to_uv] Malformed UTF-8 character my $a = ord "\x80" ; Malformed UTF-8 character my $a = ord "\xf080" ; <<<<<< this warning can't be easily triggered from perl anymore [utf16_to_utf8] Malformed UTF-16 surrogate <<<<<< Add a test when somethig actually calls utf16_to_utf8__END__# utf8.c [utf8_to_uv] -WBEGIN { if (ord('A') == 193) { print "SKIPPED\n# ebcdic platforms do not generate Malformed UTF-8 warnings."; exit 0; }}use utf8 ;my $a = "sn鴖torm" ;{ no warnings 'utf8' ; my $a = "sn鴖torm"; use warnings 'utf8' ; my $a = "sn鴖torm";}EXPECTMalformed UTF-8 character (unexpected non-continuation byte 0x73 after start byte 0xf8) at - line 9.Malformed UTF-8 character (unexpected non-continuation byte 0x73 after start byte 0xf8) at - line 14.########
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -