26-06-2010 05:00 PM |
convert text to hexa |

stef_zhang Murid Akademi I

Posts: 19
Joined: 17.04.10
Location: medan
Age: 35
|
kk xyb, minta bantuan nya donk.. tolong di explore code buat konversi text ke hexa. dan sebaliknya.
misalkan :
diinput : explore
setelah jadi hexa : 6578706c6f7265
Thanks sebelumnya buat semua. |
|
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'explnorg_xybrain.r.rate_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by |
|
28-06-2010 01:15 PM |
RE:
convert text to hexa | Edited by
bad_samt 28-06-2010 01:21 PM
|

bad_samt Anbu

Posts: 270
Joined: 23.04.09
Location: Searcing........
|
cari aja or tanya om google aja bos..
tapi klo ga moa repot" ne cara ubah Text jadi Hexadesimal, tp ne Online
http://www.string-functions.com/string-hex.aspx
kalo bentuk software juga ada bos...
tp pada masih trial yg ane punya.... |
|
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'explnorg_xybrain.r.rate_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by |
|
28-06-2010 06:01 PM |
RE:
convert text to hexa |

stef_zhang Murid Akademi I

Posts: 19
Joined: 17.04.10
Location: medan
Age: 35
|
bad_samt wrote:
cari aja or tanya om google aja bos..
tapi klo ga moa repot" ne cara ubah Text jadi Hexadesimal, tp ne Online
http://www.string-functions.com/string-hex.aspx
kalo bentuk software juga ada bos...
tp pada masih trial yg ane punya....
Thanks infonya.. sy juga pake link itu sebelum nya... jadi kali ini mau coding nya.. ok de... aye explore dulu...  |
|
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'explnorg_xybrain.r.rate_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by |
|
12-07-2010 10:44 AM |
RE:
convert text to hexa |

EVA-00 HackAge

Posts: 2770
Joined: 21.05.08
Location: Wallahu a'lam
Age: 37
|
Untuk convert text ke hexa di C/C++ bisa pake fungsi itoa
contoh program :
Code/* itoa example */
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int i;
char buffer [33];
printf ("Enter a number: ");
scanf ("%d",&i);
itoa (i,buffer,10);
printf ("decimal: %s\n",buffer);
itoa (i,buffer,16);
printf ("hexadecimal: %s\n",buffer);
itoa (i,buffer,2);
printf ("binary: %s\n",buffer);
return 0;
}
Output program diatas :
Enter a number: 1750
decimal: 1750
hexadecimal: 6d6
binary: 11011010110
Semoga membantu, sumber bisa di baca2 disini
Nabi Muhammad SAW bersabda :” Barangsiapa Yang Mengamalkan Ilmu Yang Ia Ketahui Maka Allah Akan Memberikan Kepadanya Ilmu Yang Belum Ia Ketahui” (HR. Imam Ahmad).
..::shn6 u!vJq Jnoh 3Joldx3 d33>I::..
|
|
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'explnorg_xybrain.r.rate_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by |