主页
PHP
PHP - 转义字符
tryphp_string_escape_hex
运行 ❯
×
更改方向
保存代码
更改主题
A backslash followed by an 'x' and a hex number represents a hex value:
<?php $x = "\x48\x65\x6c\x6c\x6f"; echo $x; ?>
A backslash followed by an 'x' and a hex number represents a hex value:
Hello