Unicode Finder

"📩" U+1F4E9(ENVELOPE WITH DOWNWARDS ARROW ABOVE)

📩
U+1F4E9
区块名称
Miscellaneous Symbols and Pictographs
名称
ENVELOPE WITH DOWNWARDS ARROW ABOVE

Programming

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

Web

CSS
\01F4E9
HtmlDecimal
📩
HtmlHexadecimal
📩
Url
%F0%9F%93%A9

Code

MD5
7c2b18a29623e60b70153e62e7ed3da4
Sha1
cff8cb5d95cc142b0ec4fb1069295e3b5fb83de2
Base64
8J+TqQ==

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1F4E9';
console.log(char);  // Output: 📩

Java:

char c = '\u1F4E9';
System.out.println(c);  // Output: 📩

JSON:

{"text": "\u1F4E9"}  // Value: 📩

Python:

char = '\u1F4E9'
print(char)  # Output: 📩

Perl:

my $char = "\x{1F4E9}";
print $char;  # Output: 📩

PHP:

$char = "\x{1F4E9}";
echo $char;  // Output: 📩

Ruby:

char = "\u{1F4E9}"
puts char  # Output: 📩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128233;</p>  <!-- Display: 📩 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4E9;</p>  <!-- Display: 📩 -->

URL Encoding:

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

Encodings

MD5:

7c2b18a29623e60b70153e62e7ed3da4

SHA1:

cff8cb5d95cc142b0ec4fb1069295e3b5fb83de2

Base64:

8J+TqQ==