Unicode Finder

"๐Ÿž„" U+1F784(BLACK SLIGHTLY SMALL CIRCLE)

๐Ÿž„
U+1F784
Nama Blok
Unknown Block
Nama
BLACK SLIGHTLY SMALL CIRCLE

Programming

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

Web

CSS
\01F784
HtmlDecimal
🞄
HtmlHexadecimal
🞄
Url
%F0%9F%9E%84

Code

MD5
62f2346f1df8f4b59ce84bb8ebb076df
Sha1
065860d402b3aeedebbe4be9a22c6e2f482295ca
Base64
8J+ehA==

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F784"}  // Value: ๐Ÿž„

Python:

char = '\u1F784'
print(char)  # Output: ๐Ÿž„

Perl:

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

PHP:

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

Ruby:

char = "\u{1F784}"
puts char  # Output: ๐Ÿž„

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

62f2346f1df8f4b59ce84bb8ebb076df

SHA1:

065860d402b3aeedebbe4be9a22c6e2f482295ca

Base64:

8J+ehA==