Unicode Finder

"🏲" U+1F3F2(BLACK PENNANT)

🏲
U+1F3F2
Nama Blok
Miscellaneous Symbols and Pictographs
Nama
BLACK PENNANT

Programming

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

Web

CSS
\01F3F2
HtmlDecimal
🏲
HtmlHexadecimal
🏲
Url
%F0%9F%8F%B2

Code

MD5
c71617fc5c08880c6f70cae5a95039f4
Sha1
a32f47e228e1b60e8402aa65bdb72b7e2c5912a0
Base64
8J+Psg==

Contoh Penggunaan

Programming Languages

C:

char c = '\u1F3F2';
printf("%c\n", c);  // Output: 🏲

JavaScript:

const char = '\u1F3F2';
console.log(char);  // Output: 🏲

Java:

char c = '\u1F3F2';
System.out.println(c);  // Output: 🏲

JSON:

{"text": "\u1F3F2"}  // Value: 🏲

Python:

char = '\u1F3F2'
print(char)  # Output: 🏲

Perl:

my $char = "\x{1F3F2}";
print $char;  # Output: 🏲

PHP:

$char = "\x{1F3F2}";
echo $char;  // Output: 🏲

Ruby:

char = "\u{1F3F2}"
puts char  # Output: 🏲

Rust:

let c = '\u{1F3F2}';
println!("{}", c);  // Output: 🏲

Go:

char := '\u1F3F2'
fmt.Printf("%c\n", char)  // Output: 🏲

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F3F2";  /* Display: 🏲 */
}

HTML Decimal:

<p>HTML decimal: &#127986;</p>  <!-- Display: 🏲 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3F2;</p>  <!-- Display: 🏲 -->

URL Encoding:

// 🏲 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8F%B2

Encodings

MD5:

c71617fc5c08880c6f70cae5a95039f4

SHA1:

a32f47e228e1b60e8402aa65bdb72b7e2c5912a0

Base64:

8J+Psg==