Unicode Finder

"๐Ÿžœ" U+1F79C(DIAMOND TARGET)

๐Ÿžœ
U+1F79C
Nama Blok
Unknown Block
Nama
DIAMOND TARGET

Programming

C
\u1F79C
JavaScript
\u1F79C
Java
\u1F79C
Json
\u1F79C
Python
\u1F79C
Perl
\x{1F79C}
PHP
\x{1F79C}
Ruby
\u{1F79C}
Rust
\u{1F79C}
Go
\u1F79C

Web

CSS
\01F79C
HtmlDecimal
🞜
HtmlHexadecimal
🞜
Url
%F0%9F%9E%9C

Code

MD5
4da72fbcd23baa5a505fee4af5f2f944
Sha1
24b000e151854b5c6fab828370a8896c7f87ef59
Base64
8J+enA==

Contoh Penggunaan

Programming Languages

C:

char c = '\u1F79C';
printf("%c\n", c);  // Output: ๐Ÿžœ

JavaScript:

const char = '\u1F79C';
console.log(char);  // Output: ๐Ÿžœ

Java:

char c = '\u1F79C';
System.out.println(c);  // Output: ๐Ÿžœ

JSON:

{"text": "\u1F79C"}  // Value: ๐Ÿžœ

Python:

char = '\u1F79C'
print(char)  # Output: ๐Ÿžœ

Perl:

my $char = "\x{1F79C}";
print $char;  # Output: ๐Ÿžœ

PHP:

$char = "\x{1F79C}";
echo $char;  // Output: ๐Ÿžœ

Ruby:

char = "\u{1F79C}"
puts char  # Output: ๐Ÿžœ

Rust:

let c = '\u{1F79C}';
println!("{}", c);  // Output: ๐Ÿžœ

Go:

char := '\u1F79C'
fmt.Printf("%c\n", char)  // Output: ๐Ÿžœ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F79C";  /* Display: ๐Ÿžœ */
}

HTML Decimal:

<p>HTML decimal: &#128924;</p>  <!-- Display: ๐Ÿžœ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F79C;</p>  <!-- Display: ๐Ÿžœ -->

URL Encoding:

// ๐Ÿžœ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%9E%9C

Encodings

MD5:

4da72fbcd23baa5a505fee4af5f2f944

SHA1:

24b000e151854b5c6fab828370a8896c7f87ef59

Base64:

8J+enA==