Converting hex into a text or normal string

This item was filled under [ Code Snippet, PHP ]

Converting hex into a text or normal string using PHP code.
Fungsi mengkonvert dari tulisan bentuk hex kedalam normal string menggunakan PHP.

<?php
function hex2text($hexstr) {
 $hex = explode('%',$hexstr);
 array_shift($hex);
    $str = '';
    foreach($hex as $hexcode) {
     $str .= chr(base_convert($hexcode, 16, 10));
    }
    return $str; 
}
?>

contoh penggunaan:

echo hex2text("%40"); // <-- akan menampilkan @
echo "<br />";
echo hex2text("%2A"); // <-- akan menampilkan *
echo "<br />";
echo hex2text("%40%2A"); // <-- akan menampilkan @*

semoga mambantu :mrgreen:

Update: untuk memudahkan, gunakan Tools konversi javascript encrypt decrypt hex HTML.
Link nya: http://www.nusansifor.com/kasus/hex2string

Selamat mencoba.

Rate this topic:
1 Star2 Stars3 Stars4 Stars5 Stars (4 votes, average: 5.00 out of 5)
Loading ... Loading ...
Popularity: 5,437 views
Tagged with: [ , , , , , , , ]
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Artikel Sejenis

7 Comments on “Converting hex into a text or normal string”

  • pak_dhe
    Mozilla Firefox Mozilla Firefox 3.0.10
    Windows Windows XP
    3 Aug 2009 17:11

    gag bisa mas ??
    udah ta’ simpan di file PHP !!

    Like or Dislike: Thumb up 0 Thumb down 0
  • Mozilla Firefox Mozilla Firefox 3.0.11
    Windows Windows XP
    14 Aug 2009 18:45

    Terimkasih atas komentarnya, kami update artikel berikut contoh penggunaannya.
    ini contoh kasus penggunaannya:

    echo hex2text("%40"); // <-- akan menampilkan @
    echo "<br />";
    echo hex2text("%2A"); // <-- akan menampilkan *
    Like or Dislike: Thumb up 0 Thumb down 0
  • dsdasd
    Mozilla Firefox Mozilla Firefox 3.6.3
    Windows Windows XP
    1 Sep 2010 14:19

    #164C4

    Like or Dislike: Thumb up 0 Thumb down 0
  • yoga
    Mozilla Firefox Mozilla Firefox 3.6.3
    Windows Windows XP
    15 Sep 2010 18:57

    maaf gan ane masih newbie ..!!

    mau tanya tuh pake software apa…??

    apa cm make notepad…??

    Like or Dislike: Thumb up 0 Thumb down 0
  • Mozilla Firefox Mozilla Firefox 3.6.8
    Windows Windows XP
    25 Sep 2010 22:50

    @yoga, ini script PHP, code editor nya bisa pakai notepad atau notepad++ atau editor lain yg sejenis… dan running nya lewat web server yang support PHP.

    Like or Dislike: Thumb up 0 Thumb down 0

Trackbacks

  1. HTML Encryption dan Decryption | Cruz3N Blog
  2. HTML Encryption dan Decryption - Bhandel

Leave a Comment

Notify me of followup comments via e-mail. You can also subscribe without commenting.

Halaman ini di eksekusi dalam waktu 1.747 detik! (koneksi mayan bagus nih...)