Unicode 代理对

发布于 2024-09-15 11:36:16 字数 127 浏览 6 评论 0原文

假设我有一对代理。例如:

\u306f\u30fc

是否有一个函数可以用来将字符打印到屏幕上?

Say I have a surrogate pair. For example:

\u306f\u30fc

Is there a function I can use to print the character to the screen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇俏 2024-09-22 11:36:17

如果你想手动执行:

echo chr(0x30) . chr(0x6f) . chr(0x30) . chr(0xfc);

如果你有字符串,你总是可以这样做:

$callback = function($match) { 
    return chr(hexdec($match[1])) . chr(hexdec($match[2]));
}
preg_replace_callback('#\\\\u([0-9a-f]{2})([0-9a-f]{2})#', $callback, $string);

或者,如果 php < 5.3

$callback = create_function('$match', 
    'return chr(hexdec($match[1])) . chr(hexdec($match[2]));'
);
preg_replace_callback('#\\\\u([0-9a-f]{2})([0-9a-f]{2})#', $callback, $string);

If you want to do it manually:

echo chr(0x30) . chr(0x6f) . chr(0x30) . chr(0xfc);

If you have the string, you could always do:

$callback = function($match) { 
    return chr(hexdec($match[1])) . chr(hexdec($match[2]));
}
preg_replace_callback('#\\\\u([0-9a-f]{2})([0-9a-f]{2})#', $callback, $string);

Or, if php < 5.3

$callback = create_function('$match', 
    'return chr(hexdec($match[1])) . chr(hexdec($match[2]));'
);
preg_replace_callback('#\\\\u([0-9a-f]{2})([0-9a-f]{2})#', $callback, $string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文