Unicode Finder

"📬" U+1F4EC(OPEN MAILBOX WITH RAISED FLAG)

📬
U+1F4EC
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
OPEN MAILBOX WITH RAISED FLAG

Programming

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

Web

CSS
\01F4EC
HtmlDecimal
📬
HtmlHexadecimal
📬
Url
%F0%9F%93%AC

Code

MD5
f5efc903be509b1b1208684634beea9c
Sha1
da3457e5a88ddfdfb487115fb24ad9ea5eae49aa
Base64
8J+TrA==

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u1F4EC';
console.log(char);  // Output: 📬

Java:

char c = '\u1F4EC';
System.out.println(c);  // Output: 📬

JSON:

{"text": "\u1F4EC"}  // Value: 📬

Python:

char = '\u1F4EC'
print(char)  # Output: 📬

Perl:

my $char = "\x{1F4EC}";
print $char;  # Output: 📬

PHP:

$char = "\x{1F4EC}";
echo $char;  // Output: 📬

Ruby:

char = "\u{1F4EC}"
puts char  # Output: 📬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128236;</p>  <!-- Display: 📬 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4EC;</p>  <!-- Display: 📬 -->

URL Encoding:

// 📬 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%93%AC

Encodings

MD5:

f5efc903be509b1b1208684634beea9c

SHA1:

da3457e5a88ddfdfb487115fb24ad9ea5eae49aa

Base64:

8J+TrA==