絵文字表示

ソフトバンク

以下、「少年の顔」の絵文字を表示する。絵文字のバイナリコードは http://cgi.wap2.jp/emoji/softbank/ などで調べる。

HTMLのエンコーディングがシフトJISの場合

 <?php
 header('Content-type: text/html; charset=Shift_JIS');
 ?>
 <html>
 <body>
 絵文字:
 <?php
 $bin = pack('C*',hexdec('F9'),hexdec('41'));
 print $bin;
 ?>
 </body>
 </html>

HTMLのエンコーディングがUTF8の場合

 <?php
 header('Content-type: text/html; charset=utf-8');
 ?>
 <html>
 <body>
 絵文字:
 <?php
 $bin = pack('C*',hexdec('EE'),hexdec('80'),hexdec('81'));
 print $bin;
 ?>
 </body>
 </html>

トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2008-04-28 (月) 04:08:50